You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Validator pubkey is unchecked during registration. This is fine for now since the validator set is whitelisted and validation happens on the cosmos side, but this is required for permissionless validators.
Proposed Solution
require and verify consensus private key signature field in Staking.sol::createValidator. Might want to change to uncompressed pubkey for simplicity of verification
The text was updated successfully, but these errors were encountered:
The Staking.sol contract was updated, so the `updatedStaking` routine
was updated to use the new initializer function, and additional tests
were added.
issue: #2430
Problem to Solve
Validator pubkey is unchecked during registration. This is fine for now since the validator set is whitelisted and validation happens on the cosmos side, but this is required for permissionless validators.
Proposed Solution
require and verify consensus private key signature field in
Staking.sol::createValidator
. Might want to change to uncompressed pubkey for simplicity of verificationThe text was updated successfully, but these errors were encountered: