Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jae-cuz committed Sep 18, 2023
1 parent 62c2129 commit 77dfed1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plonkish/backend/plaf.rs
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ impl<F: PrimeField<Repr = [u8; 32]>> ChiquitoPlaf<F> {
plaf.columns.public.push(plaf_public);
}

for (index, (c_column, rotation)) in self.circuit.exposed.iter().rev().enumerate() {
for (index, (c_column, rotation)) in self.circuit.exposed.iter().enumerate() {
let public_column = pColumn {
kind: ColumnKind::Public,
index: 0, // Chiquito only has one public column, so the index is always 0.
Expand Down

0 comments on commit 77dfed1

Please sign in to comment.