From 4c4f64de0e1e51e8ef72d4bac9f9ba2b40cf18cd Mon Sep 17 00:00:00 2001 From: Dmitriy Ryajov Date: Thu, 1 Feb 2024 19:05:12 -0600 Subject: [PATCH] pass prover options --- tests/integration/twonodes.nim | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/integration/twonodes.nim b/tests/integration/twonodes.nim index 9fa11f1f..8c6b1eb4 100644 --- a/tests/integration/twonodes.nim +++ b/tests/integration/twonodes.nim @@ -39,6 +39,9 @@ template twonodessuite*(name: string, debug1, debug2: string, body) = "--disc-port=8090", "--listen-addrs=/ip4/127.0.0.1/tcp/0", "--persistence", + "--circom-r1cs=tests/circuits/fixtures/proof_main.r1cs", + "--circom-wasm=tests/circuits/fixtures/proof_main.wasm", + "--circom-no-zkey", "--eth-account=" & $account1 ] @@ -59,6 +62,9 @@ template twonodessuite*(name: string, debug1, debug2: string, body) = "--listen-addrs=/ip4/127.0.0.1/tcp/0", "--bootstrap-node=" & bootstrap, "--persistence", + "--circom-r1cs=tests/circuits/fixtures/proof_main.r1cs", + "--circom-wasm=tests/circuits/fixtures/proof_main.wasm", + "--circom-no-zkey", "--eth-account=" & $account2 ]