diff --git a/rln/src/circuit.rs b/rln/src/circuit.rs index 26f8764..e7bca47 100644 --- a/rln/src/circuit.rs +++ b/rln/src/circuit.rs @@ -9,7 +9,7 @@ use std::io::{Cursor, Write}; use tempfile::NamedTempFile; const ZKEY_BYTES: &[u8] = include_bytes!("../resources/rln_final.zkey"); -const WASM: &[u8] = include_bytes!("../resources/semaphore.wasm"); +const WASM: &[u8] = include_bytes!("../resources/rln.wasm"); pub static ZKEY: Lazy<(ProvingKey, ConstraintMatrices)> = Lazy::new(|| { let mut reader = Cursor::new(ZKEY_BYTES);