From 4386e09710b7f13e690e13707e73568037f77faf Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Thu, 9 Sep 2021 20:05:37 -0700 Subject: [PATCH] Reduce wait for supermajority threshold back to 80% --- core/src/validator.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/validator.rs b/core/src/validator.rs index 6e1cb86882..2699a1407a 100644 --- a/core/src/validator.rs +++ b/core/src/validator.rs @@ -101,7 +101,7 @@ use { }; const MAX_COMPLETED_DATA_SETS_IN_CHANNEL: usize = 100_000; -const WAIT_FOR_SUPERMAJORITY_THRESHOLD_PERCENT: u64 = 90; +const WAIT_FOR_SUPERMAJORITY_THRESHOLD_PERCENT: u64 = 80; pub struct ValidatorConfig { pub dev_halt_at_slot: Option,