-
Notifications
You must be signed in to change notification settings - Fork 5.3k
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
Update EIP-7742: update the required EL headers and the gas fee mechanism #8994
base: master
Are you sure you want to change the base?
Update EIP-7742: update the required EL headers and the gas fee mechanism #8994
Conversation
File
|
LGTM! |
EIPS/eip-7742.md
Outdated
else | ||
normalizedParentExcessBlobGas = parent.excess_blob_gas | ||
targetBlobGas = parent.target_blob_count * GAS_PER_BLOB | ||
maxExcessGasDiffPossible = max(parent.max_blob_count - parent.target_blob_count, parent.target_blob_count) * GAS_PER_BLOB |
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.
Does parent.max_blob_count
imply we need to store the max_blob_count on the EL header now?
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.
Why does this now need to involve max? What value are we getting from the extra complexity?
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.
we need max for max versioned hash validations and for excess blob gas computation validation in optimistic scenarios
an alternate and more simplified proposal to #8979
based on the discussion with @bkellerman here: