Removes defaults from Store to try get CI to pass

This commit is contained in:
Carl Beekhuizen 2019-06-18 20:59:17 +02:00
parent 686273e1d6
commit 3bcddf5e49
No known key found for this signature in database
GPG Key ID: D05CA176D0020646
1 changed files with 2 additions and 2 deletions

View File

@ -73,8 +73,8 @@ class Store(object):
states: Dict[Bytes32, BeaconState] = field(default_factory=dict) states: Dict[Bytes32, BeaconState] = field(default_factory=dict)
time: int = 0 time: int = 0
latest_targets: Dict[ValidatorIndex, Target] = field(default_factory=dict) latest_targets: Dict[ValidatorIndex, Target] = field(default_factory=dict)
justified_root: Bytes32 = ZERO_HASH justified_root: Bytes32
finalized_root: Bytes32 = ZERO_HASH finalized_root: Bytes32
``` ```
### Helpers ### Helpers