We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b2fb34 commit 69b6a4cCopy full SHA for 69b6a4c
circuits/plonk-15-wires/src/nolookup/constraints.rs
@@ -583,7 +583,7 @@ impl<F: FftField + SquareRootField> ConstraintSystem<F> {
583
584
for (row, gate) in self.gates.iter().enumerate() {
585
// check if wires are connected
586
- for col in 0..COLUMNS {
+ for col in 0..PERMUTS {
587
let wire = gate.wires[col];
588
if witness[col][row] != witness[wire.col][wire.row] {
589
return Err(GateError::DisconnectedWires(
0 commit comments