Skip to content
This repository has been archived by the owner on Oct 31, 2023. It is now read-only.

Commit

Permalink
fix: rename gates to opcodes (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench authored Feb 24, 2023
1 parent d27bcc9 commit 6e05307
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aztec_backend_wasm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ pub fn compute_witnesses(
// which are possible

let plonk = Plonk;
match plonk.solve(&mut witness_map, circuit.gates) {
match plonk.solve(&mut witness_map, circuit.opcodes) {
Ok(_) => {}
Err(opcode) => panic!("solver came across an error with opcode {}", opcode),
};
Expand Down

0 comments on commit 6e05307

Please sign in to comment.