Replies: 2 comments 1 reply
-
sgtm. It seems to me that the |
Beta Was this translation helpful? Give feedback.
1 reply
-
related: tendermint/spec#222 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
An idea that came up on telegram with regards to this debate over tagging v0.40.2 vs 0.41 was that we could have separate consensus versions.
How about starting by adding a
ConsensusVersion() uint64
method toAppModule
?We could also add an
MigrateFrom(ctx sdk.Context, version uint64)
method toAppModule
to do in place state migrations. We could even add support inx/upgrade
to generate an upgrade handler which 1) reads the current consensus versions from state and 2) calls each module'sMigrateFrom
method to migrate state from the current to the latest version.What do you think?
Beta Was this translation helpful? Give feedback.
All reactions