Migration v0.46.X -> v0.47.X new proposal messages migration error #51
-
Is there an existing issue for this?
What happened?When a chain in the v0.46.X version implemented the module parameters in the kv store and therefore added custom messages to change the parameters, the migration of the Cosmos SDK in the gov module to the v4 version does not occur. This is probably related to the fact that the package names have changed according to this information: cosmos-sdk migration protobuf and the proposal voting period migration does not work due to the lack of registered types:
Error message:
Cosmos SDK Versionv0.46, v0.47 How to reproduce?
|
Beta Was this translation helpful? Give feedback.
Replies: 0 comments 1 reply
-
Can you show us how you have registered your message // RegisterInterfaces registers the interfaces types with the interface registry
func RegisterInterfaces(registry types.InterfaceRegistry) {
registry.RegisterImplementations((*sdk.Msg)(nil),
&MsgUpdateMintersParams{},
)
} |
Beta Was this translation helpful? Give feedback.
Can you show us how you have registered your message
MsgUpdateMintersParams
?It seems like your modules does not register its messages.