From 1dc3c8156ea5b227165d9bb09fc6f9bda900b7f8 Mon Sep 17 00:00:00 2001 From: DimitrisJim Date: Fri, 27 Oct 2023 12:03:12 +0300 Subject: [PATCH] Register message service descriptor --- modules/apps/27-interchain-accounts/host/types/codec.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/apps/27-interchain-accounts/host/types/codec.go b/modules/apps/27-interchain-accounts/host/types/codec.go index ef94e88ae67..8752640e767 100644 --- a/modules/apps/27-interchain-accounts/host/types/codec.go +++ b/modules/apps/27-interchain-accounts/host/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 host message types using the provided InterfaceRegistry @@ -11,4 +12,6 @@ func RegisterInterfaces(registry codectypes.InterfaceRegistry) { (*sdk.Msg)(nil), &MsgUpdateParams{}, ) + + msgservice.RegisterMsgServiceDesc(registry, &_Msg_serviceDesc) }