Skip to content

Commit

Permalink
fix(msg): register proto interface (backport #4944) (#4953)
Browse files Browse the repository at this point in the history
* fix(msg): register proto interface (#4944)

(cherry picked from commit 9466ced)

* add changelog

---------

Co-authored-by: emidev98 <49301655+emidev98@users.noreply.github.com>
Co-authored-by: Carlos Rodriguez <carlos@interchain.io>
  • Loading branch information
3 people committed Oct 26, 2023
1 parent d73c6d0 commit bef2278
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ Ref: https://keepachangelog.com/en/1.0.0/

### Bug Fixes

* (apps/27-interchain-accounts) [\#4944](https://github.com/cosmos/ibc-go/pull/4944) Add missing proto interface registration.

## [v7.3.1](https://github.com/cosmos/ibc-go/releases/tag/v7.3.1) - 2023-10-20

### Dependencies
Expand Down
2 changes: 2 additions & 0 deletions modules/apps/27-interchain-accounts/controller/types/codec.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -12,4 +13,5 @@ func RegisterInterfaces(registry codectypes.InterfaceRegistry) {
&MsgRegisterInterchainAccount{},
&MsgSendTx{},
)
msgservice.RegisterMsgServiceDesc(registry, &_Msg_serviceDesc)
}

0 comments on commit bef2278

Please sign in to comment.