mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-07 22:54:17 -05:00
* PeerDAS: Add needed proto files and corresponding generated code. * Fix Nishant's comment. * `max_cell_proofs_length.size`: Set to `CELLS_PER_EXT_BLOB * MAX_BLOB_COMMITMENTS_PER_BLOCK`. * `BlobsBundleV2`: Add comment.
8 lines
123 B
Go
8 lines
123 B
Go
package enginev1
|
|
|
|
type BlobsBundler interface {
|
|
GetKzgCommitments() [][]byte
|
|
GetProofs() [][]byte
|
|
GetBlobs() [][]byte
|
|
}
|