add ILs peer sync - #11180
Merged
mehdi-aouadi merged 2 commits intoAug 27, 2026
Merged
Conversation
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
Reviewed by Cursor Bugbot for commit 0846987. Configure here.
mehdi-aouadi
merged commit Aug 27, 2026
a5315f7
into
Consensys:focil-devnet-0
157 of 159 checks passed
This file contains hidden or 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
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.

PR Description
Add InclusionListsByCommitteeIndices RPC endpoint
Fixed Issue(s)
fixes #9063
Documentation
doc-change-requiredlabel to this PR if updates are required.Changelog
Note
Medium Risk
Changes P2P request SSZ layout and RPC response selection for inclusion lists, which affects interoperability with peers and what data is served during sync.
Overview
Extends InclusionListsByCommitteeIndices so requests carry a
dependent_rootalongside slot and committee indices, and wires outbound peer RPC throughSyncSource/DefaultEth2Peer(with throttling wrapper delegating unchanged).On the serve path,
InclusionListManager.getInclusionListsnow filters stored lists by that root and drops equivocating validators (conflicting messages for the same slot, root, and index). RPCgetMaximumResponseChunksis aligned with the number of requested committee bits rather than a fixed config cap.NodeDataProvider and the inclusion-list RPC handler pass the new field through; tests cover manager lookup/equivocation behavior and peer request encoding.
Reviewed by Cursor Bugbot for commit 5af7db1. Bugbot is set up for automated code reviews on this repo. Configure here.