From 50bf90d9ffd2075bcef2baf4f3e769ca44b1a8a5 Mon Sep 17 00:00:00 2001 From: guangwu Date: Tue, 24 Oct 2023 08:44:33 +0800 Subject: [PATCH] chore: pkg import only once (#3712) Signed-off-by: guoguangwu --- ignite/pkg/cosmosclient/txservice_test.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ignite/pkg/cosmosclient/txservice_test.go b/ignite/pkg/cosmosclient/txservice_test.go index 18ee2e7e4c..d78722f071 100644 --- a/ignite/pkg/cosmosclient/txservice_test.go +++ b/ignite/pkg/cosmosclient/txservice_test.go @@ -7,7 +7,6 @@ import ( abci "github.com/cometbft/cometbft/abci/types" ctypes "github.com/cometbft/cometbft/rpc/core/types" - sdk "github.com/cosmos/cosmos-sdk/types" sdktypes "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" @@ -45,7 +44,7 @@ func TestTxServiceBroadcast(t *testing.T) { } tests := []struct { name string - msg sdk.Msg + msg sdktypes.Msg opts []cosmosclient.Option expectedResponse *sdktypes.TxResponse expectedError string