From f8b88d717ec6ea482aebf06ae1779c12a5019868 Mon Sep 17 00:00:00 2001 From: carllin Date: Tue, 16 Jun 2020 02:55:36 -0700 Subject: [PATCH] Enable fork choice and switch votes, devnet => now, testnet => epoch 63 (#10615) * Enable fork choice, devnet => now, testnet => epoch 63 * Set development to 0 * Enable switch vote slot Co-authored-by: Carl Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> --- core/src/replay_stage.rs | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/core/src/replay_stage.rs b/core/src/replay_stage.rs index b14eaddcae..820bd6c1fc 100644 --- a/core/src/replay_stage.rs +++ b/core/src/replay_stage.rs @@ -1747,17 +1747,19 @@ impl ReplayStage { pub fn get_unlock_switch_vote_slot(operating_mode: OperatingMode) -> Slot { match operating_mode { - OperatingMode::Development => std::u64::MAX / 2, + OperatingMode::Development => 0, OperatingMode::Stable => std::u64::MAX / 2, - OperatingMode::Preview => std::u64::MAX / 2, + // Epoch 63 + OperatingMode::Preview => 21_692_256, } } pub fn get_unlock_heaviest_subtree_fork_choice(operating_mode: OperatingMode) -> Slot { match operating_mode { - OperatingMode::Development => std::u64::MAX / 2, + OperatingMode::Development => 0, OperatingMode::Stable => std::u64::MAX / 2, - OperatingMode::Preview => std::u64::MAX / 2, + // Epoch 63 + OperatingMode::Preview => 21_692_256, } }