From bb5a721707e3088c5b549bb55c40c6af6c9fa2cf Mon Sep 17 00:00:00 2001 From: terence tsao Date: Wed, 24 Jul 2019 15:41:26 -0700 Subject: [PATCH] Update 0_fork-choice.md --- specs/core/0_fork-choice.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specs/core/0_fork-choice.md b/specs/core/0_fork-choice.md index 88edceaa0..7d89e3044 100644 --- a/specs/core/0_fork-choice.md +++ b/specs/core/0_fork-choice.md @@ -158,7 +158,7 @@ def on_block(store: Store, block: BeaconBlock) -> None: # Check that block is later than the finalized epoch slot assert block.slot > compute_start_slot_at_epoch(store.finalized_checkpoint.epoch) # Check the block is valid and compute the post-state - state = state_transition(pre_state, block) + state = state_transition(pre_state, block, true) # Add new state for this block to the store store.block_states[signing_root(block)] = state