-
Notifications
You must be signed in to change notification settings - Fork 5
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
fix: compare validator and withdrawal proof state roots #53
Conversation
WalkthroughThe recent updates to the ExoCapsule system introduce a new error definition, Changes
Poem
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configuration File (
|
Linting failed. Please check the logs. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (2)
- src/core/ExoCapsule.sol (2 hunks)
- src/libraries/BeaconChainProofs.sol (2 hunks)
Additional comments not posted (3)
src/libraries/BeaconChainProofs.sol (1)
194-198
: LGTM! Function name change is clear and descriptive.The function
isValidWCRootAgainstExecutionPayloadRoot
has been renamed toisValidWCRootAgainstBlockRoot
. The new name is more descriptive and aligns with the functionality.src/core/ExoCapsule.sol (2)
49-49
: LGTM! New error definition is clear and informative.The new error
UnmatchedValidatorAndWithdrawal
with parametersvalidatorStateRoot
andwithdrawalStateRoot
provides useful information for debugging.
155-159
: LGTM! Validation check ensures consistency between validator and withdrawal proofs.The validation check compares the state roots of the validator and withdrawal proofs. If they do not match, the new error
UnmatchedValidatorAndWithdrawal
is reverted, providing useful information for debugging.
Linting failed. Please check the logs. |
1 similar comment
Linting failed. Please check the logs. |
75c9cc4
to
defa4f6
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (2)
- src/core/ExoCapsule.sol (2 hunks)
- src/libraries/BeaconChainProofs.sol (2 hunks)
Files skipped from review as they are similar to previous changes (2)
- src/core/ExoCapsule.sol
- src/libraries/BeaconChainProofs.sol
isValidWCRootAgainstBlockRoot
Summary by CodeRabbit
ExoCapsule
contract to ensure matching state roots for validator and withdrawal proofs.BeaconChainProofs
library.