Skip to content

Commit

Permalink
fix: Support annotations for CellNotAssigned in verify_par (#138)
Browse files Browse the repository at this point in the history
  • Loading branch information
CPerezz authored Feb 2, 2023
1 parent c7e42e4 commit 0c99e89
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion halo2_proofs/src/dev.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1022,7 +1022,12 @@ impl<F: FieldExt> MockProver<F> {
} else {
Some(VerifyFailure::CellNotAssigned {
gate: (gate_index, gate.name()).into(),
region: (r_i, r.name.clone()).into(),
region: (
r_i,
r.name.clone(),
r.annotations.clone(),
)
.into(),
gate_offset: *selector_row,
column: cell.column,
offset: cell_row as isize
Expand Down

0 comments on commit 0c99e89

Please sign in to comment.