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
aee852c647
commit
d05a127f34
1 changed files with 2 additions and 2 deletions
|
|
@ -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.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue