From 0675d1519e04bdc06979a4a1e8175b4632a40ecb Mon Sep 17 00:00:00 2001 From: yperbasis Date: Sun, 6 Aug 2023 11:30:28 +0200 Subject: [PATCH] sightly better fork names --- execution/execution.proto | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/execution/execution.proto b/execution/execution.proto index 3ba8c01..60f7482 100644 --- a/execution/execution.proto +++ b/execution/execution.proto @@ -51,10 +51,10 @@ message Header { types.H256 ommer_hash = 15; types.H256 transaction_hash = 16; optional types.H256 base_fee_per_gas = 17; - optional types.H256 withdrawal_hash = 18; // added in Shanghai (EIP-4895) - optional uint64 blob_gas_used = 19; // added in Cancun (EIP-4844) - optional uint64 excess_blob_gas = 20; // added in Cancun (EIP-4844) - optional types.H256 parent_beacon_block_root = 21; // added in Cancun (EIP-4788) + optional types.H256 withdrawal_hash = 18; // added in Shapella (EIP-4895) + optional uint64 blob_gas_used = 19; // added in Dencun (EIP-4844) + optional uint64 excess_blob_gas = 20; // added in Dencun (EIP-4844) + optional types.H256 parent_beacon_block_root = 21; // added in Dencun (EIP-4788) } // Body is a block body for execution @@ -118,8 +118,8 @@ message AssembleBlockRequest { uint64 timestamp = 2; types.H256 prev_randao = 3; types.H160 suggested_fee_recipient = 4; - repeated types.Withdrawal withdrawals = 5; // added in Shanghai (EIP-4895) - optional types.H256 parent_beacon_block_root = 6; // added in Cancun (EIP-4788) + repeated types.Withdrawal withdrawals = 5; // added in Shapella (EIP-4895) + optional types.H256 parent_beacon_block_root = 6; // added in Dencun (EIP-4788) } message AssembleBlockResponse {