From d05a127f34f5ff9e2b7d651111cd2851952b38a1 Mon Sep 17 00:00:00 2001 From: Marius van der Wijden Date: Thu, 13 Mar 2025 11:16:16 +0100 Subject: [PATCH] beacon/engine: correct casing for cellProofs --- beacon/engine/types.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/beacon/engine/types.go b/beacon/engine/types.go index c305507dbb..8825b9c153 100644 --- a/beacon/engine/types.go +++ b/beacon/engine/types.go @@ -117,7 +117,7 @@ type BlobsBundleV1 struct { Commitments []hexutil.Bytes `json:"commitments"` Proofs []hexutil.Bytes `json:"proofs"` Blobs []hexutil.Bytes `json:"blobs"` - CellProofs []hexutil.Bytes `json:"cell_proofs"` + CellProofs []hexutil.Bytes `json:"cellProofs"` } type BlobAndProofV1 struct { @@ -127,7 +127,7 @@ type BlobAndProofV1 struct { type BlobAndProofV2 struct { Blob hexutil.Bytes `json:"blob"` - CellProofs []hexutil.Bytes `json:"cell_proofs"` + CellProofs []hexutil.Bytes `json:"cellProofs"` } // JSON type overrides for ExecutionPayloadEnvelope.