-
Notifications
You must be signed in to change notification settings - Fork 997
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 get_data_column_sidecars to take cells/proofs #3836
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.
This makes sense to me.
It would be nice to maybe overload this function from an implementation POV. Because this function is still used with blobs getting passed, in the proposer impls. Exactly where proposer extracts blob sidecars from blob bundle and then gets data column sidecars from the blobs, at slot start. |
You can call |
OK, thanks |
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! Thanks!
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 received feedback from clients that they were unable to re-create data column sidecars after performing recovery because
get_data_column_sidecars
took blobs, butrecover_cells_and_kzg_proofs
provided cells/proofs and there was no public method to convert the cells back to a blob. I think it makes sense to change this function to take cells/proofs instead of blobs.