Skip to content

Commit 1698fda

Browse files
committed
fmt
1 parent 863f321 commit 1698fda

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

prover/src/prover_stages/cached_data.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,10 @@ impl ProverCachedData {
364364
let circuit_sequence_bits_shift = (trace_len.trailing_zeros()
365365
+ num_bits_in_timestamp_for_index_log_2)
366366
- TIMESTAMP_COLUMNS_NUM_BITS;
367-
assert!((circuit_sequence << circuit_sequence_bits_shift) < (1 << TIMESTAMP_COLUMNS_NUM_BITS));
367+
assert!(
368+
(circuit_sequence << circuit_sequence_bits_shift)
369+
< (1 << TIMESTAMP_COLUMNS_NUM_BITS)
370+
);
368371

369372
let memory_timestamp_high_from_circuit_idx =
370373
Mersenne31Field::from_u64_with_reduction(

0 commit comments

Comments
 (0)