From ea55b294f132971bb59a2aca98a281eff97051f2 Mon Sep 17 00:00:00 2001 From: avalonche Date: Thu, 20 Jul 2023 15:14:22 +1000 Subject: [PATCH] update blob size --- api/v1/deneb/blindedbeaconblockbody.go | 2 +- api/v1/deneb/blindedblockcontents.go | 2 +- api/v1/deneb/signedblindedblockcontents.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/api/v1/deneb/blindedbeaconblockbody.go b/api/v1/deneb/blindedbeaconblockbody.go index 626fa1ff..b1c771c3 100644 --- a/api/v1/deneb/blindedbeaconblockbody.go +++ b/api/v1/deneb/blindedbeaconblockbody.go @@ -36,7 +36,7 @@ type BlindedBeaconBlockBody struct { SyncAggregate *altair.SyncAggregate ExecutionPayloadHeader *deneb.ExecutionPayloadHeader BLSToExecutionChanges []*capella.SignedBLSToExecutionChange `ssz-max:"16"` - BlobKzgCommitments []deneb.KzgCommitment `ssz-max:"4" ssz-size:"?,48"` + BlobKzgCommitments []deneb.KzgCommitment `ssz-max:"6" ssz-size:"?,48"` } // String returns a string version of the structure. diff --git a/api/v1/deneb/blindedblockcontents.go b/api/v1/deneb/blindedblockcontents.go index c2cb2740..b106a471 100644 --- a/api/v1/deneb/blindedblockcontents.go +++ b/api/v1/deneb/blindedblockcontents.go @@ -22,7 +22,7 @@ import ( // BlindedBlockContents represents the contents of a block, both blinded block and blob. type BlindedBlockContents struct { BlindedBlock *BlindedBeaconBlock - BlindedBlobSidecars []*BlindedBlobSidecar `ssz-max:"4"` + BlindedBlobSidecars []*BlindedBlobSidecar `ssz-max:"6"` } // String returns a string version of the structure. diff --git a/api/v1/deneb/signedblindedblockcontents.go b/api/v1/deneb/signedblindedblockcontents.go index 86175ea3..896d74b8 100644 --- a/api/v1/deneb/signedblindedblockcontents.go +++ b/api/v1/deneb/signedblindedblockcontents.go @@ -22,7 +22,7 @@ import ( // SignedBlindedBlockContents represents the contents of a block, both block and blob. type SignedBlindedBlockContents struct { SignedBlindedBlock *SignedBlindedBeaconBlock - SignedBlindedBlobSidecars []*SignedBlindedBlobSidecar `ssz-max:"4"` + SignedBlindedBlobSidecars []*SignedBlindedBlobSidecar `ssz-max:"6"` } // String returns a string version of the structure.