Skip to content

Commit

Permalink
fix!: assure historic TxExtensionOptions encoding validity (#3032)
Browse files Browse the repository at this point in the history
  • Loading branch information
MSalopek authored Mar 29, 2024
1 parent 52633c2 commit e00f2ef
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 e00f2ef

Please sign in to comment.