diff --git a/src/circuit/gadget/add_chip.rs b/src/circuit/gadget/add_chip.rs index 3d387f526..58fe588ca 100644 --- a/src/circuit/gadget/add_chip.rs +++ b/src/circuit/gadget/add_chip.rs @@ -53,7 +53,7 @@ impl AddChip { let b = meta.query_advice(b, Rotation::cur()); let c = meta.query_advice(c, Rotation::cur()); - Constraints::with_selector(q_add, Some(a + b - c)) + Constraints::with_selector(q_add, Some(("c = a + b", a + b - c))) }); AddConfig { a, b, c, q_add }