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
As a developer, I want the randao process to verify the correct message so that clients can interoperate.
hash_tree_root()
The verify_and_update_randao() method in BlockProcessorUtil has the following method to compute the message to be verified:
verify_and_update_randao()
Bytes32 currentEpochBytes = Bytes32.leftPad(Bytes.ofUnsignedLong(currentEpoch.longValue()));
This has changed in the 0.4 spec and ought to be (the equivalent of) hash_tree_root(get_current_epoch(state))
hash_tree_root(get_current_epoch(state))
The change was made in ethereum/consensus-specs#633 at this line
The text was updated successfully, but these errors were encountered:
Closed by #447
Sorry, something went wrong.
benjaminion
No branches or pull requests
Description
As a developer, I want the randao process to verify the correct message so that clients can interoperate.
Acceptance Criteria
hash_tree_root()
Additional Information
The
verify_and_update_randao()
method in BlockProcessorUtil has the following method to compute the message to be verified:This has changed in the 0.4 spec and ought to be (the equivalent of)
hash_tree_root(get_current_epoch(state))
The change was made in ethereum/consensus-specs#633 at this line
The text was updated successfully, but these errors were encountered: