From eb7ed2fbe05304b14352c194481aae8ac6aed850 Mon Sep 17 00:00:00 2001 From: Nico Flaig Date: Tue, 8 Oct 2024 16:31:54 +0100 Subject: [PATCH] Update blinded block to contain execution requests instead of root --- types/electra/block.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/types/electra/block.yaml b/types/electra/block.yaml index db460fd3..4cdcdd7f 100644 --- a/types/electra/block.yaml +++ b/types/electra/block.yaml @@ -80,12 +80,12 @@ Electra: allOf: - $ref: "#/Electra/BeaconBlockBodyCommon" - type: object - required: [execution_payload_header, execution_requests_root] + required: [execution_payload_header, execution_requests] properties: execution_payload_header: $ref: "../deneb/execution_payload.yaml#/Deneb/ExecutionPayloadHeader" - execution_requests_root: - $ref: "../primitive.yaml#/Root" + execution_requests: + $ref: "./execution_requests.yaml#/Electra/ExecutionRequests" BlindedBeaconBlock: description: "A variant of the [`BeaconBlock`](https://github.com/ethereum/consensus-specs/blob/v1.5.0-alpha.5/specs/phase0/beacon-chain.md#beaconblock) object from the CL Electra spec, which contains a `BlindedBeaconBlockBody` rather than a `BeaconBlockBody`."