Skip to content

Commit bac3d85

Browse files
committed
style: wrap long line in PartialDataColumnHeader
🤖 Generated with AI assistance
1 parent 28a1189 commit bac3d85

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

src/consensus_types/fulu.zig

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff 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

98101
pub const MatrixEntry = ssz.FixedContainerType(struct {
@@ -119,7 +122,10 @@ pub const PartialDataColumnPartsMetadata = ssz.VariableContainerType(struct {
119122
pub 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

0 commit comments

Comments
 (0)