Skip to content

Commit

Permalink
Add parent_beacon_block_root to AssembleBlockRequest (EIP-4788)
Browse files Browse the repository at this point in the history
  • Loading branch information
yperbasis committed Aug 4, 2023
1 parent 09807b0 commit fa41935
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions execution/execution.proto
Original file line number Diff line number Diff line change
Expand Up @@ -113,11 +113,12 @@ message ValidationRequest {
}

message AssembleBlockRequest {
types.H256 parentHash = 1;
types.H256 parent_hash = 1;
uint64 timestamp = 2;
types.H256 mixDigest = 3;
types.H160 suggestedFeeRecipent = 4;
repeated types.Withdrawal withdrawals = 5;
types.H256 mix_digest = 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)
}

message AssembleBlockResponse {
Expand Down

0 comments on commit fa41935

Please sign in to comment.