From 15a1ccd3ddd734aeaf696f61477f32981bd77704 Mon Sep 17 00:00:00 2001 From: srdtrk Date: Tue, 26 Mar 2024 12:26:05 +0700 Subject: [PATCH] nit: review item --- e2e/testsuite/codec.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/e2e/testsuite/codec.go b/e2e/testsuite/codec.go index 7669a4b14b1..ca08e41c491 100644 --- a/e2e/testsuite/codec.go +++ b/e2e/testsuite/codec.go @@ -14,7 +14,7 @@ import ( cryptocodec "github.com/cosmos/cosmos-sdk/crypto/codec" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module/testutil" - "github.com/cosmos/cosmos-sdk/types/tx" + txtypes "github.com/cosmos/cosmos-sdk/types/tx" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" "github.com/cosmos/cosmos-sdk/x/authz" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" @@ -89,7 +89,7 @@ func codecAndEncodingConfig() (*codec.ProtoCodec, simappparams.EncodingConfig) { grouptypes.RegisterInterfaces(cfg.InterfaceRegistry) proposaltypes.RegisterInterfaces(cfg.InterfaceRegistry) authz.RegisterInterfaces(cfg.InterfaceRegistry) - tx.RegisterInterfaces(cfg.InterfaceRegistry) + txtypes.RegisterInterfaces(cfg.InterfaceRegistry) cdc := codec.NewProtoCodec(cfg.InterfaceRegistry) return cdc, cfg