From 7a71919c534fa291209bd4e476b69970c0a3f27e Mon Sep 17 00:00:00 2001 From: Carl Beekhuizen Date: Tue, 18 Jun 2019 21:55:41 +0200 Subject: [PATCH] Test removing all the Bytes objects --- specs/core/0_fork-choice.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/specs/core/0_fork-choice.md b/specs/core/0_fork-choice.md index 11d6453e9..a5d202ffa 100644 --- a/specs/core/0_fork-choice.md +++ b/specs/core/0_fork-choice.md @@ -61,7 +61,6 @@ The head block root associated with a `store` is defined as `get_head(store)`. A @dataclass class Target(object): epoch: Epoch - root: Bytes32 ``` #### `Store` @@ -69,12 +68,8 @@ class Target(object): ```python @dataclass class Store(object): - blocks: Dict[Bytes32, BeaconBlock] = field(default_factory=dict) - states: Dict[Bytes32, BeaconState] = field(default_factory=dict) time: int = 0 latest_targets: Dict[ValidatorIndex, Target] = field(default_factory=dict) - justified_root: Bytes32 = 0x0 - finalized_root: Bytes32 = 0x0 ``` ### Helpers