style: nph formatting (#1067)

* style: nph setup

* chore: formates codex/ and tests/ folder with nph 0.6.1
This commit is contained in:
Adam Uhlíř
2025-01-21 20:54:46 +00:00
committed by GitHub
parent d114e6e942
commit e5df8c50d3
272 changed files with 7290 additions and 7562 deletions
+5 -10
View File
@@ -21,20 +21,15 @@ suite "tools/cirdl":
let args = [circuitPath, rpcEndpoint, $marketplaceAddress]
let process = osproc.startProcess(
cirdl,
workdir,
args,
options={poParentStreams}
)
let process = osproc.startProcess(cirdl, workdir, args, options = {poParentStreams})
let returnCode = process.waitForExit()
check returnCode == 0
check:
fileExists(circuitPath/"proof_main_verification_key.json")
fileExists(circuitPath/"proof_main.r1cs")
fileExists(circuitPath/"proof_main.wasm")
fileExists(circuitPath/"proof_main.zkey")
fileExists(circuitPath / "proof_main_verification_key.json")
fileExists(circuitPath / "proof_main.r1cs")
fileExists(circuitPath / "proof_main.wasm")
fileExists(circuitPath / "proof_main.zkey")
removeDir(circuitPath)