Skip to content

Commit

Permalink
Polish merge/fork-choice.md
Browse files Browse the repository at this point in the history
  • Loading branch information
mkalinin committed Mar 25, 2021
1 parent a23bde3 commit 260a0a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion specs/merge/fork-choice.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ def on_block(store: Store, signed_block: SignedBeaconBlock) -> None:

# [New in Merge]
if is_transition_block(pre_state, block.body):
pow_block = get_pow_block(block.body.application_payload.block_hash)
# Delay consideration of block until PoW block is processed by the PoW node
pow_block = get_pow_block(block.body.application_payload.block_hash)
assert pow_block.is_processed
assert is_valid_transition_block(pow_block)

Expand Down

0 comments on commit 260a0a5

Please sign in to comment.