From 5c65ddf2d4ebad6b82f708e4715c0cc4563b0232 Mon Sep 17 00:00:00 2001 From: TomAFrench Date: Wed, 22 Feb 2023 13:21:32 +0000 Subject: [PATCH] fix: rename gates to opcodes --- aztec_backend_wasm/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aztec_backend_wasm/src/lib.rs b/aztec_backend_wasm/src/lib.rs index c28c9591..4303c1d9 100644 --- a/aztec_backend_wasm/src/lib.rs +++ b/aztec_backend_wasm/src/lib.rs @@ -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), };