Skip to content
This repository was archived by the owner on Apr 18, 2025. It is now read-only.

Commit 02b6877

Browse files
committed
Fix to row_number <= NORMALIZED_ROW_LIMIT.
1 parent b6d98c3 commit 02b6877

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

prover/src/zkevm/capacity_checker.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ impl RowUsage {
9090
Self {
9191
row_usage_details,
9292
row_number,
93-
is_ok: row_number < NORMALIZED_ROW_LIMIT,
93+
is_ok: row_number <= NORMALIZED_ROW_LIMIT,
9494
}
9595
}
9696
pub fn add(&mut self, other: &RowUsage) {

0 commit comments

Comments
 (0)