-
Notifications
You must be signed in to change notification settings - Fork 759
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
vm/tx: update 7702 to devnet-4 #3737
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files
Flags with carried forward coverage won't be shown. Click here to find out more. |
9baab30
to
735ed26
Compare
735ed26
to
bcfc8f6
Compare
For completeness: I also ran the https://github.com/ethereum/execution-spec-tests/releases/tag/pectra-devnet-4%40v1.0.1 state and blockchain tests, we pass all 🎉 |
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.
LGTM
This PR addresses the following EIP PRs for devnet-4 :
ethereum/EIPs#8845 (removes the
secp256k1/2
check ofs
of an authority tuple)ethereum/EIPs#8938 (do not allow the
nonce
of an authority tuple to be2^64 - 1
(NOTE: the check that it is less-than-or-equal-to2^64 - 1
is done at the tx level (such that it fits within an uint64), but this check makes it explicit that the authority nonce is not2^64 - 1
, because bumping this nonce would make it2^64
, thus not fitting within an uint64 anymore)ethereum/EIPs#8929 (revokes delegation mechanism, changes yParity validity at tx-level to fit within a
uint8
/bytes1
)ethereum/EIPs#8948 (increases
PER_AUTH_BASE_COST
, the fee paid when delegating anauthority
account which already exists in the trie)Note: descriptions of this PR might look incomplete when checking these individual PRs, however this means that that specific change has been overridden by a newer PR. For devnet-4 this is also included: ethereum/EIPs#8940, however this does not change anything and is just clarifications.
This PR points to (and builds upon) #3706. (I would like to use that PR as devnet-4 base branch)
TODOs
execution-spec-tests
for devnet-4