From a431e5b7afcaeb904eaf3a2c022b450e41c697e7 Mon Sep 17 00:00:00 2001 From: emidev98 <49301655+emidev98@users.noreply.github.com> Date: Thu, 26 Oct 2023 09:14:42 +0200 Subject: [PATCH] fix(msg): register proto interface (#4944) (cherry picked from commit 9466ced775854f1cfce294545ed76d5602997dd6) --- modules/apps/27-interchain-accounts/controller/types/codec.go | 2 ++ 1 file changed, 2 insertions(+) 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) }