We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 500375f commit c7306f0Copy full SHA for c7306f0
beacon_chain/gossip_processing/gossip_validation.nim
@@ -463,7 +463,7 @@ template validateBeaconBlockGloas(
463
# `bid.parent_block_hash`) passes all validation.
464
withState(dag.headState):
465
when consensusFork >= ConsensusFork.Gloas:
466
- if bid.parent_block_hash != dag.headState.latest_block_hash:
+ if bid.parent_block_hash != forkyState.latest_block_hash:
467
return dag.checkedReject("validateBeaconBlockGloas: invalid execution payload parent")
468
469
# [REJECT] The bid's parent (defined by `bid.parent_block_root`) equals the
0 commit comments