-
Notifications
You must be signed in to change notification settings - Fork 982
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
Specify the number of sidecar subnets #3346
Conversation
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!
I'm not immediately sure why test-eip-6110 CI failed. I just re-triggeredd the build to see if that helps
eef0b0c
to
a8c3891
Compare
@hwwhww Do you have an insight on the CI error?
|
@ppopth I believe since EIP6110 CI job was merged to the CI |
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.
good idea
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!
Previously the number of subnets is equal to MAX_BLOBS_PER_BLOCK which specifies the number of blobs per block. This commit now makes the number of subnets equal to BLOB_SIDECAR_SUBNET_COUNT instead. The advantage of doing this is that we can change MAX_BLOBS_PER_BLOCK without worrying about the p2p network structure and the number of subnets.
Previously the number of subnets is equal to
MAX_BLOBS_PER_BLOCK
which specifies the number of blobs per block. This commit now makes the number of subnets equal toBLOB_SIDECAR_SUBNET_COUNT
instead.The advantage of doing this is that we can change
MAX_BLOBS_PER_BLOCK
without worrying about the p2p network structure and the number of subnets.