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

fix: rename gates to opcodes #59

Merged
merged 1 commit into from
Feb 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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