From b55ef47c9b47fbe051218d84958e1eda24c705f7 Mon Sep 17 00:00:00 2001 From: Danny Ryan Date: Fri, 30 Nov 2018 12:04:18 -0600 Subject: [PATCH] set initial fork_slot to INITIAL_SLOT_NUMBER --- specs/core/0_beacon-chain.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/specs/core/0_beacon-chain.md b/specs/core/0_beacon-chain.md index b223dfb70..c76f051ac 100644 --- a/specs/core/0_beacon-chain.md +++ b/specs/core/0_beacon-chain.md @@ -817,7 +817,7 @@ def on_startup(initial_validator_entries: List[Any], fork_data=ForkData( pre_fork_version=INITIAL_FORK_VERSION, post_fork_version=INITIAL_FORK_VERSION, - fork_slot=2**64 - 1, + fork_slot=INITIAL_SLOT_NUMBER, ), pubkey=pubkey, deposit=deposit, @@ -860,7 +860,7 @@ def on_startup(initial_validator_entries: List[Any], fork_data=ForkData( pre_fork_version=INITIAL_FORK_VERSION, post_fork_version=INITIAL_FORK_VERSION, - fork_slot=2**64 - 1, + fork_slot=INITIAL_SLOT_NUMBER, ), )