Removes defaults from Store to try get CI to pass
This commit is contained in:
parent
686273e1d6
commit
3bcddf5e49
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue