File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -92,7 +92,10 @@ pub const DataColumnSidecar = ssz.VariableContainerType(struct {
9292 kzg_commitments : ssz .FixedListType (p.KZGCommitment , preset .MAX_BLOB_COMMITMENTS_PER_BLOCK ),
9393 kzg_proofs : ssz .FixedListType (p.KZGProof , preset .MAX_BLOB_COMMITMENTS_PER_BLOCK ),
9494 signed_block_header : SignedBeaconBlockHeader ,
95- kzg_commitments_inclusion_proof : ssz .FixedVectorType (p.Bytes32 , preset .KZG_COMMITMENTS_INCLUSION_PROOF_DEPTH ),
95+ kzg_commitments_inclusion_proof : ssz .FixedVectorType (
96+ p .Bytes32 ,
97+ preset .KZG_COMMITMENTS_INCLUSION_PROOF_DEPTH ,
98+ ),
9699});
97100
98101pub const MatrixEntry = ssz .FixedContainerType (struct {
@@ -119,7 +122,10 @@ pub const PartialDataColumnPartsMetadata = ssz.VariableContainerType(struct {
119122pub const PartialDataColumnHeader = ssz .VariableContainerType (struct {
120123 kzg_commitments : ssz .FixedListType (p.KZGCommitment , preset .MAX_BLOB_COMMITMENTS_PER_BLOCK ),
121124 signed_block_header : SignedBeaconBlockHeader ,
122- kzg_commitments_inclusion_proof : ssz .FixedVectorType (p.Bytes32 , preset .KZG_COMMITMENTS_INCLUSION_PROOF_DEPTH ),
125+ kzg_commitments_inclusion_proof : ssz .FixedVectorType (
126+ p .Bytes32 ,
127+ preset .KZG_COMMITMENTS_INCLUSION_PROOF_DEPTH ,
128+ ),
123129});
124130
125131// Light client types
You can’t perform that action at this time.
0 commit comments