beacon/engine: correct casing for cellProofs

This commit is contained in:
Marius van der Wijden 2025-03-13 11:16:16 +01:00 committed by MariusVanDerWijden
parent 15c7cad543
commit 125dd1bda5

View file

@ -117,7 +117,7 @@ type BlobsBundleV1 struct {
Commitments []hexutil.Bytes `json:"commitments"` Commitments []hexutil.Bytes `json:"commitments"`
Proofs []hexutil.Bytes `json:"proofs"` Proofs []hexutil.Bytes `json:"proofs"`
Blobs []hexutil.Bytes `json:"blobs"` Blobs []hexutil.Bytes `json:"blobs"`
CellProofs []hexutil.Bytes `json:"cell_proofs"` CellProofs []hexutil.Bytes `json:"cellProofs"`
} }
type BlobAndProofV1 struct { type BlobAndProofV1 struct {
@ -127,7 +127,7 @@ type BlobAndProofV1 struct {
type BlobAndProofV2 struct { type BlobAndProofV2 struct {
Blob hexutil.Bytes `json:"blob"` Blob hexutil.Bytes `json:"blob"`
CellProofs []hexutil.Bytes `json:"cell_proofs"` CellProofs []hexutil.Bytes `json:"cellProofs"`
} }
// JSON type overrides for ExecutionPayloadEnvelope. // JSON type overrides for ExecutionPayloadEnvelope.