mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-26 06:36:43 +00:00
beacon/engine: correct casing for cellProofs
This commit is contained in:
parent
15c7cad543
commit
125dd1bda5
1 changed files with 2 additions and 2 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Reference in a new issue