mirror of
https://github.com/ethereum/consensus-specs.git
synced 2026-02-04 00:35:05 -05:00
Fix timestamp passed to produce_execution_payload
This commit is contained in:
@@ -95,9 +95,9 @@ def get_execution_payload(state: BeaconState,
|
||||
return ExecutionPayload()
|
||||
else:
|
||||
# Signify merge via producing on top of the last PoW block
|
||||
return produce_execution_payload(state, pow_block.block_hash, timestamp, randao_reveal)
|
||||
return produce_execution_payload(state, pow_block.block_hash, randao_reveal)
|
||||
|
||||
# Post-merge, normal payload
|
||||
parent_hash = state.latest_execution_payload_header.block_hash
|
||||
return produce_execution_payload(state, parent_hash, timestamp, randao_reveal)
|
||||
return produce_execution_payload(state, parent_hash, randao_reveal)
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user