diff --git a/modules/apps/27-interchain-accounts/controller/types/codec.go b/modules/apps/27-interchain-accounts/controller/types/codec.go index 6b684cf4618..747ccf8c89f 100644 --- a/modules/apps/27-interchain-accounts/controller/types/codec.go +++ b/modules/apps/27-interchain-accounts/controller/types/codec.go @@ -3,6 +3,7 @@ package types import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/cosmos/cosmos-sdk/types/msgservice" ) // RegisterInterfaces registers the interchain accounts controller message types using the provided InterfaceRegistry @@ -12,4 +13,5 @@ func RegisterInterfaces(registry codectypes.InterfaceRegistry) { &MsgRegisterInterchainAccount{}, &MsgSendTx{}, ) + msgservice.RegisterMsgServiceDesc(registry, &_Msg_serviceDesc) }