Skip to content

Commit

Permalink
Fix to row_number <= NORMALIZED_ROW_LIMIT.
Browse files Browse the repository at this point in the history
  • Loading branch information
silathdiir committed Sep 7, 2023
1 parent b6d98c3 commit 02b6877
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prover/src/zkevm/capacity_checker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ impl RowUsage {
Self {
row_usage_details,
row_number,
is_ok: row_number < NORMALIZED_ROW_LIMIT,
is_ok: row_number <= NORMALIZED_ROW_LIMIT,
}
}
pub fn add(&mut self, other: &RowUsage) {
Expand Down

0 comments on commit 02b6877

Please sign in to comment.