From 16356486c704854e765486969fc57b51f6e554b4 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) (cherry picked from commit 2486e21ffe93e1c7346b013f81b21a4831617872) --- 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 4a97e486792680..bd95cdca73b881 100644 --- a/core/src/replay_stage.rs +++ b/core/src/replay_stage.rs @@ -1190,7 +1190,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