From dca9f2ee767a59f00ae4e13cc13a36d2b64a48c8 Mon Sep 17 00:00:00 2001 From: Eric <5089238+emizzle@users.noreply.github.com> Date: Sat, 30 Mar 2024 04:15:21 +1100 Subject: [PATCH] Use circuit artifacts in codex circuit fixtures for tests (#759) --- tests/integration/twonodes.nim | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/integration/twonodes.nim b/tests/integration/twonodes.nim index 5e1825ef..d85a449e 100644 --- a/tests/integration/twonodes.nim +++ b/tests/integration/twonodes.nim @@ -40,9 +40,9 @@ template twonodessuite*(name: string, debug1, debug2: string, body) = "--listen-addrs=/ip4/127.0.0.1/tcp/0", "persistence", "prover", - "--circom-r1cs=vendor/codex-contracts-eth/verifier/networks/hardhat/proof_main.r1cs", - "--circom-wasm=vendor/codex-contracts-eth/verifier/networks/hardhat/proof_main.wasm", - "--circom-zkey=vendor/codex-contracts-eth/verifier/networks/hardhat/proof_main.zkey", + "--circom-r1cs=tests/circuits/fixtures/proof_main.r1cs", + "--circom-wasm=tests/circuits/fixtures/proof_main.wasm", + "--circom-zkey=tests/circuits/fixtures/proof_main.zkey", "--eth-account=" & $account1 ] @@ -64,9 +64,9 @@ template twonodessuite*(name: string, debug1, debug2: string, body) = "--bootstrap-node=" & bootstrap, "persistence", "prover", - "--circom-r1cs=vendor/codex-contracts-eth/verifier/networks/hardhat/proof_main.r1cs", - "--circom-wasm=vendor/codex-contracts-eth/verifier/networks/hardhat/proof_main.wasm", - "--circom-zkey=vendor/codex-contracts-eth/verifier/networks/hardhat/proof_main.zkey", + "--circom-r1cs=tests/circuits/fixtures/proof_main.r1cs", + "--circom-wasm=tests/circuits/fixtures/proof_main.wasm", + "--circom-zkey=tests/circuits/fixtures/proof_main.zkey", "--eth-account=" & $account2 ]