Skip to content

Commit

Permalink
increase STEP_COUNT_LIMIT
Browse files Browse the repository at this point in the history
  • Loading branch information
eriktaubeneck committed Dec 6, 2024
1 parent 9f9ceae commit d3bd6e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ipa-core/src/protocol/ipa_prf/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 = 24_000;
const STEP_COUNT_LIMIT: u32 = 36_000;
assert!(
ProtocolStep::STEP_COUNT < STEP_COUNT_LIMIT,
"Step count of {actual} exceeds limit of {STEP_COUNT_LIMIT}.",
Expand Down

0 comments on commit d3bd6e2

Please sign in to comment.