From 2486e21ffe93e1c7346b013f81b21a4831617872 Mon Sep 17 00:00:00 2001 From: sakridge Date: Tue, 4 Jan 2022 12:49:14 +0100 Subject: [PATCH] Lower vote-only-mode to 400 (#22210) --- core/src/replay_stage.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/replay_stage.rs b/core/src/replay_stage.rs index 5fd50c19ce..6e75a9490c 100644 --- a/core/src/replay_stage.rs +++ b/core/src/replay_stage.rs @@ -1539,7 +1539,7 @@ impl ReplayStage { ); let root_distance = poh_slot - root_slot; - const MAX_ROOT_DISTANCE_FOR_VOTE_ONLY: Slot = 500; + const MAX_ROOT_DISTANCE_FOR_VOTE_ONLY: Slot = 400; let vote_only_bank = if root_distance > MAX_ROOT_DISTANCE_FOR_VOTE_ONLY { datapoint_info!("vote-only-bank", ("slot", poh_slot, i64)); true