Skip to content

Commit

Permalink
fix!: assure historic TxExtensionOptions encoding validity (#3032)
Browse files Browse the repository at this point in the history
(cherry picked from commit e00f2ef)
  • Loading branch information
MSalopek authored and mergify[bot] committed Mar 29, 2024
1 parent 1e7b517 commit 8af7fb2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions x/metaprotocols/types/codec.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package types
import (
"github.com/cosmos/cosmos-sdk/codec/types"
tx "github.com/cosmos/cosmos-sdk/types/tx"
"github.com/cosmos/cosmos-sdk/x/authz"
)

// RegisterInterfaces adds the x/metaprotocols module's interfaces to the provided InterfaceRegistry
Expand All @@ -11,5 +12,8 @@ func RegisterInterfaces(registry types.InterfaceRegistry) {
registry.RegisterImplementations(
(*tx.TxExtensionOptionI)(nil),
&ExtensionData{},
// needs to be registered to allow parsing of historic data stored in TxExtensionOptions
// the app does not interact with this message in any way but it performs an unmarshal which must not fail
&authz.MsgRevoke{},
)
}

0 comments on commit 8af7fb2

Please sign in to comment.