Skip to content

Commit 69b6a4c

Browse files
committed
[kimchi] fix poseidon test
1 parent 2b2fb34 commit 69b6a4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

circuits/plonk-15-wires/src/nolookup/constraints.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -583,7 +583,7 @@ impl<F: FftField + SquareRootField> ConstraintSystem<F> {
583583

584584
for (row, gate) in self.gates.iter().enumerate() {
585585
// check if wires are connected
586-
for col in 0..COLUMNS {
586+
for col in 0..PERMUTS {
587587
let wire = gate.wires[col];
588588
if witness[col][row] != witness[wire.col][wire.row] {
589589
return Err(GateError::DisconnectedWires(

0 commit comments

Comments
 (0)