-
Notifications
You must be signed in to change notification settings - Fork 285
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
Implement EIP-4788: Beacon block root in the EVM #709
Conversation
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## master #709 +/- ##
=======================================
Coverage 97.71% 97.72%
=======================================
Files 107 108 +1
Lines 9746 9784 +38
=======================================
+ Hits 9523 9561 +38
Misses 223 223
Flags with carried forward coverage won't be shown. Click here to find out more.
|
c13c88f
to
a3bace8
Compare
e638733
to
7532c7d
Compare
952d465
to
78a3bdb
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.
Looks good, but unit test fails on sanitizer build
Noticed, but I don't know why yet. |
2d31f5b
to
90f4f80
Compare
Implement the system call from the "Block processing" of the EIP-4788. https://eips.ethereum.org/EIPS/eip-4788#block-processing At the beginning of each block a gas-free call is invoked from the _system_ account (0xff..fe) to the specific _system_ contract.
Implement the system call from the "Block processing" of the EIP-4788.
https://eips.ethereum.org/EIPS/eip-4788#block-processing
At the beginning of each block a gas-free call is invoked from
the system account (
0xff..fe
) to the specific system contract.