Skip to content

Commit 22fec23

Browse files
authored
Merge pull request attestantio#271 from samcm/feat/bump-max-blobs
feat(blobs): Bump max blobs to 72
2 parents c819f2c + 0deed26 commit 22fec23

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

api/blobsidecars.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ import (
2020

2121
// BlobSidecars is an API construct to allow decoding an array of blob sidecars.
2222
type BlobSidecars struct {
23-
Sidecars []*deneb.BlobSidecar `ssz-max:"12"`
23+
Sidecars []*deneb.BlobSidecar `ssz-max:"72"`
2424
}
2525

2626
// UnmarshalSSZ ssz unmarshals the BlobSidecars object.
2727
// This is a hand-crafted function, as automatic generation does not support immediate arrays.
2828
func (b *BlobSidecars) UnmarshalSSZ(buf []byte) error {
29-
num, err := ssz.DivideInt2(len(buf), 131928, 12)
29+
num, err := ssz.DivideInt2(len(buf), 131928, 72)
3030
if err != nil {
3131
return err
3232
}

0 commit comments

Comments
 (0)