From 8a76a4143dfd7d58f8d48a289d9e270e7fc1eadb Mon Sep 17 00:00:00 2001 From: Mark Mackey Date: Fri, 24 Sep 2021 14:15:42 -0500 Subject: [PATCH] Fixed Validation Conditions (Function Renamed) --- specs/merge/p2p-interface.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specs/merge/p2p-interface.md b/specs/merge/p2p-interface.md index e101c8ff3..954c1b008 100644 --- a/specs/merge/p2p-interface.md +++ b/specs/merge/p2p-interface.md @@ -71,7 +71,7 @@ Alias `block = signed_beacon_block.message`, `execution_payload = block.body.exe - If the execution is enabled for the block -- i.e. `is_execution_enabled(state, block.body)` then validate the following: - _[REJECT]_ The block's execution payload timestamp is correct with respect to the slot - -- i.e. `execution_payload.timestamp == compute_time_at_slot(state, block.slot)`. + -- i.e. `execution_payload.timestamp == compute_timestamp_at_slot(state, block.slot)`. - _[REJECT]_ Gas used is less than the gas limit -- i.e. `execution_payload.gas_used <= execution_payload.gas_limit`. - _[REJECT]_ The execution payload block hash is not equal to the parent hash --