We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Create a meaningful test for returning app_hash from InitChain after an upgrade
After #7020 & #7208, InitChain returns the app_hash to Tendermint.
For a fresh chain, the app_hash is sha256(""). This use case is tested. For an upgrade, app_hash is the last commitID. This use case is not tested.
sha256("")
Add a test case (ideally an integration test) that would look like:
The text was updated successfully, but these errors were encountered:
closing this as it will be done in v2
Sorry, something went wrong.
No branches or pull requests
Summary
Create a meaningful test for returning app_hash from InitChain after an upgrade
Problem Definition
After #7020 & #7208, InitChain returns the app_hash to Tendermint.
For a fresh chain, the app_hash is
sha256("")
. This use case is tested.For an upgrade, app_hash is the last commitID. This use case is not tested.
Proposal
Add a test case (ideally an integration test) that would look like:
For Admin Use
The text was updated successfully, but these errors were encountered: