diff --git a/tests/integration/multinodes.nim b/tests/integration/multinodes.nim index 552e7c37..841f8ef2 100644 --- a/tests/integration/multinodes.nim +++ b/tests/integration/multinodes.nim @@ -268,15 +268,15 @@ template multinodesuite*(suiteName: string, body: untyped) = ) config.addCliOption( PersistenceCmd.prover, "--circom-r1cs", - "vendor/codex-contracts-eth/verifier/networks/hardhat/proof_main.r1cs", + "tests/circuits/fixtures/proof_main.r1cs", ) config.addCliOption( - PersistenceCmd.prover, "--circom-wasm", - "vendor/codex-contracts-eth/verifier/networks/hardhat/proof_main.wasm", + PersistenceCmd.prover, "--circom-graph", + "tests/circuits/fixtures/proof_main.bin", ) config.addCliOption( PersistenceCmd.prover, "--circom-zkey", - "vendor/codex-contracts-eth/verifier/networks/hardhat/proof_main.zkey", + "tests/circuits/fixtures/proof_main.zkey", ) return await newCodexProcess(providerIdx, config, Role.Provider) diff --git a/tests/integration/testcli.nim b/tests/integration/testcli.nim index aa57ed73..2c6422ba 100644 --- a/tests/integration/testcli.nim +++ b/tests/integration/testcli.nim @@ -88,8 +88,10 @@ asyncchecksuite "Command line interface": await node.stop(expectedErrCode = 1) discard removeFile(unsafeKeyFile) - let expectedDownloadInstruction = - "Proving circuit files are not found. Please run the following to download them:" + let + marketplaceArg = "--marketplace-address=" & $EthAddress.example + expectedDownloadInstruction = + "Proving circuit files are not found. Please run the following to download them:" test "suggests downloading of circuit files when persistence is enabled without accessible r1cs file": let node = await startCodex(@["persistence", "prover", marketplaceArg])