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
In Tendermint v0.27.0 only pubKeyTypes specified in ConsensusParams are allowed.
We can however still create validators with invalid key types which halts the chain since applyblock fails.
This is causing all of the integration tests to fail at the moment. Fixed in #2943 (tests only)
The handler for MsgCreateValidator needs to check whether the key is of a valid type.
MsgCreateValidator
The text was updated successfully, but these errors were encountered:
wow! Great catch @SLAMPER!
Sorry, something went wrong.
hendrikhofstadt
No branches or pull requests
Summary of Bug
In Tendermint v0.27.0 only pubKeyTypes specified in ConsensusParams are allowed.
We can however still create validators with invalid key types which halts the chain since applyblock fails.
This is causing all of the integration tests to fail at the moment. Fixed in #2943 (tests only)
The handler for
MsgCreateValidator
needs to check whether the key is of a valid type.Steps to Reproduce
For Admin Use
The text was updated successfully, but these errors were encountered: