Lower vote-only-mode to 400 (#22210)

This commit is contained in:
sakridge
2022-01-04 12:49:14 +01:00
committed by GitHub
parent ca5591bfa0
commit 2486e21ffe

View File

@ -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