From 626421a98ee4ff4ec251b7dcf04616e26dd7185b Mon Sep 17 00:00:00 2001 From: Erik Taubeneck Date: Fri, 6 Dec 2024 13:50:16 -0800 Subject: [PATCH] lower step count limit --- ipa-core/src/protocol/ipa_prf/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipa-core/src/protocol/ipa_prf/mod.rs b/ipa-core/src/protocol/ipa_prf/mod.rs index f80724414..4ac3abba0 100644 --- a/ipa-core/src/protocol/ipa_prf/mod.rs +++ b/ipa-core/src/protocol/ipa_prf/mod.rs @@ -867,7 +867,7 @@ mod compact_gate_tests { fn step_count_limit() { // This is an arbitrary limit intended to catch changes that unintentionally // blow up the step count. It can be increased, within reason. - const STEP_COUNT_LIMIT: u32 = 36_000; + const STEP_COUNT_LIMIT: u32 = 32_500; assert!( ProtocolStep::STEP_COUNT < STEP_COUNT_LIMIT, "Step count of {actual} exceeds limit of {STEP_COUNT_LIMIT}.",