-
-
Notifications
You must be signed in to change notification settings - Fork 359
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: increase max attestation inclusion slot for post deneb blocks #6522
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2929cb6
to
efb3fea
Compare
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## unstable #6522 +/- ##
============================================
- Coverage 61.53% 61.53% -0.01%
============================================
Files 556 556
Lines 58648 58647 -1
Branches 1847 1846 -1
============================================
- Hits 36088 36086 -2
- Misses 22520 22521 +1
Partials 40 40 |
Performance Report✔️ no performance regression detected Full benchmark results
|
g11tech
approved these changes
Mar 8, 2024
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 is included in v1.17.0 🎉 |
nflaig
added a commit
that referenced
this pull request
Apr 1, 2025
…ion slot post-deneb (#7636) **Motivation** [EIP-7045](https://eips.ethereum.org/EIPS/eip-7045) allows to include attestations from current and previous epoch in block, while we already account for increase of max attestation inclusion slot post-deneb when packing the block (#6522), we did not update our pruning and as of right now we will remove all attestations older than `clockSlot - SLOTS_PER_EPOCH`. This is not problematic during healthy network conditions but as EIP-7045 shows this is important, especially during non-finality where those attestations could become critical to include. > As discussed in the Motivation, extending this max inclusion slot to the end of the next epoch is critical for LMD-GHOST security proofs and confirmation rule. **Description** Update pruning to account for increase of max attestation inclusion slot post-deneb, ie. we will retain attestations for current and previous epoch instead of previous behavior which removed attestations older than 32 slots.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Motivation
EIP-7045 allows to include attestations from current and previous epoch in block.
https://eips.ethereum.org/EIPS/eip-7045#consensus-layer
Description
Increase max attestation inclusion slot for post deneb blocks by skipping upper bound on the slot check.
Note that we verify before that attestation target epoch is in previous or current epoch
lodestar/packages/beacon-node/src/chain/opPools/aggregatedAttestationPool.ts
Lines 142 to 145 in adc0534
Ref: https://github.com/ethereum/consensus-specs/blob/v1.4.0-beta.7/specs/deneb/beacon-chain.md#modified-process_attestation
related ethereum/consensus-specs#3360