-
Notifications
You must be signed in to change notification settings - Fork 3.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feature]: pass protocol version to cometbft #16455
Comments
cc @cmwaters |
callum has a pr to move app version out of upgrade module into consensus module, i believe this way it will get the data and pass it to comet when its required |
Hi @yihuang ! This issue has been resolved in the following PR: cosmos/cosmos-sdk#16244. The protocol version is updated during an upgrade process. This is handled in the When an upgrade is applied, the protocol version is incremented and stored. This ensures that the application is aware of the new protocol version after an upgrade. To validate this implementation, the following steps were performed:
The result of querying the Please confirm if this addresses your concerns and if the issue can be closed, thanks! |
hi @yihuang were you able to take a look at lucas's answer? |
Hey, this has been implemented in baseapp indeed. I'll open another issue for v2. |
Summary
x/upgrade
maintains an increasing protocol version number, it's set toBaseApp.appVersion
, but it's not passed to cometbft, so it's never shown inhttp://127.0.0.1:26657/abci_info
, and not included in block header.Problem Definition
Proposal
BaseApp.appVersion
fromx/upgrade
's current state.The text was updated successfully, but these errors were encountered: