Skip to content

Commit

Permalink
Set the number of receipts in bench to u16::MAX-1
Browse files Browse the repository at this point in the history
  • Loading branch information
Dentosal committed Nov 8, 2023
1 parent a0139df commit a53fe1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benches/benches/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ pub fn set_full_word(r: RegisterId, v: Word) -> Vec<Instruction> {
ops
}

const BENCH_RECEIPTS: usize = 1_000_000;
const BENCH_RECEIPTS: usize = (u16::MAX - 1) as usize;

/// Testing receipt context
#[allow(dead_code)] // Unsure why this is needed, as the code is used
Expand Down

0 comments on commit a53fe1d

Please sign in to comment.