Revert "Set DEFAULT_TICKS_PER_SLOT = 32 to stabilize integration tests"

This reverts commit 2d2572d2cb.
This commit is contained in:
Michael Vines 2019-02-13 20:20:12 -08:00
parent 97790480c9
commit f478894729
1 changed files with 0 additions and 3 deletions

View File

@ -16,12 +16,9 @@ use solana_sdk::vote_transaction::VoteTransaction;
use std::io::Cursor;
use std::sync::Arc;
/*
// At 10 ticks/s, 8 ticks per slot implies that leader rotation and voting will happen
// 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 = 64; // TODO: DEFAULT_TICKS_PER_SLOT = 8 causes instability in the integration tests.
pub const DEFAULT_SLOTS_PER_EPOCH: u64 = 64;
pub const DEFAULT_ACTIVE_WINDOW_TICK_LENGTH: u64 = DEFAULT_SLOTS_PER_EPOCH * DEFAULT_TICKS_PER_SLOT;