From cedee735488d53decc44dc109cdfa31581129587 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Thu, 7 Feb 2019 08:41:43 -0800 Subject: [PATCH] Temporarily bump DEFAULT_TICKS_PER_SLOT to 64 See solana-labs/solana#2675 --- src/leader_scheduler.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/leader_scheduler.rs b/src/leader_scheduler.rs index f5e4e3b57e..ea70bef68d 100644 --- a/src/leader_scheduler.rs +++ b/src/leader_scheduler.rs @@ -21,7 +21,7 @@ use std::sync::Arc; // every 800 ms. A fast voting cadence ensures faster finality and convergence pub const DEFAULT_TICKS_PER_SLOT: u64 = 8; */ -pub const DEFAULT_TICKS_PER_SLOT: u64 = 32; // TODO: DEFAULT_TICKS_PER_SLOT = 8 causes instability in the integration tests. +pub const DEFAULT_TICKS_PER_SLOT: u64 = 64; // TODO: DEFAULT_TICKS_PER_SLOT = 8 causes instability in the integration tests. pub const DEFAULT_SLOTS_PER_EPOCH: u64 = 64; pub const DEFAULT_SEED_ROTATION_INTERVAL: u64 = DEFAULT_SLOTS_PER_EPOCH * DEFAULT_TICKS_PER_SLOT; pub const DEFAULT_ACTIVE_WINDOW_LENGTH: u64 = DEFAULT_SEED_ROTATION_INTERVAL;