Skip to content

Commit b860cc7

Browse files
authored
refactor: remove duplicate package import (#2312)
Signed-off-by: ianlv <[email protected]>
1 parent 874badd commit b860cc7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

x/wasm/keeper/keeper_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ import (
1717
abci "github.com/cometbft/cometbft/abci/types"
1818
"github.com/cometbft/cometbft/libs/rand"
1919
cmtproto "github.com/cometbft/cometbft/proto/tendermint/types"
20-
tmproto "github.com/cometbft/cometbft/proto/tendermint/types"
2120
dbm "github.com/cosmos/cosmos-db"
2221
fuzz "github.com/google/gofuzz"
2322
"github.com/stretchr/testify/assert"
@@ -339,7 +338,7 @@ func TestCreateDuplicate(t *testing.T) {
339338
func TestCreateWithSimulation(t *testing.T) {
340339
ctx, keepers := CreateTestInput(t, false, AvailableCapabilities)
341340

342-
ctx = ctx.WithBlockHeader(tmproto.Header{Height: 1}).
341+
ctx = ctx.WithBlockHeader(cmtproto.Header{Height: 1}).
343342
WithGasMeter(storetypes.NewInfiniteGasMeter())
344343

345344
deposit := sdk.NewCoins(sdk.NewInt64Coin("denom", 100000))

0 commit comments

Comments
 (0)