Skip to content

Commit

Permalink
Merge pull request #1651 from ethereum/revert-forkchoice-header
Browse files Browse the repository at this point in the history
revert fork choice store.blocks to BeaconBlock
  • Loading branch information
protolambda committed Mar 10, 2020
2 parents 3b7704a + c91eee6 commit ab24e7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion specs/phase0/fork-choice.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ class Store(object):
justified_checkpoint: Checkpoint
finalized_checkpoint: Checkpoint
best_justified_checkpoint: Checkpoint
blocks: Dict[Root, BeaconBlockHeader] = field(default_factory=dict)
blocks: Dict[Root, BeaconBlock] = field(default_factory=dict)
block_states: Dict[Root, BeaconState] = field(default_factory=dict)
checkpoint_states: Dict[Checkpoint, BeaconState] = field(default_factory=dict)
latest_messages: Dict[ValidatorIndex, LatestMessage] = field(default_factory=dict)
Expand Down

0 comments on commit ab24e7c

Please sign in to comment.