From 3bcddf5e49521192d415e89727fe38dea4a975ac Mon Sep 17 00:00:00 2001 From: Carl Beekhuizen Date: Tue, 18 Jun 2019 20:59:17 +0200 Subject: [PATCH] Removes defaults from Store to try get CI to pass --- specs/core/0_fork-choice.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/specs/core/0_fork-choice.md b/specs/core/0_fork-choice.md index e4ea773c8..f57fd84b8 100644 --- a/specs/core/0_fork-choice.md +++ b/specs/core/0_fork-choice.md @@ -73,8 +73,8 @@ class Store(object): states: Dict[Bytes32, BeaconState] = field(default_factory=dict) time: int = 0 latest_targets: Dict[ValidatorIndex, Target] = field(default_factory=dict) - justified_root: Bytes32 = ZERO_HASH - finalized_root: Bytes32 = ZERO_HASH + justified_root: Bytes32 + finalized_root: Bytes32 ``` ### Helpers