From 7949a253cea29192f96fe6a75a59f9f44a5d66b2 Mon Sep 17 00:00:00 2001 From: Jaremy Creechley Date: Thu, 16 May 2024 21:26:18 +0300 Subject: [PATCH] modifying circomcompat for use with asyncthreading --- codex/codex.nim | 2 +- codex/slots/proofs/{asyncbackend.nim => asyncthreads.nim} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename codex/slots/proofs/{asyncbackend.nim => asyncthreads.nim} (100%) diff --git a/codex/codex.nim b/codex/codex.nim index d8edc38e..90179260 100644 --- a/codex/codex.nim +++ b/codex/codex.nim @@ -294,7 +294,7 @@ proc new*( some Prover.new( store, - CircomCompat.init($config.circomR1cs, $config.circomWasm, zkey), + CircomCompatParams.init($config.circomR1cs, $config.circomWasm, zkey), config.numProofSamples) else: none Prover diff --git a/codex/slots/proofs/asyncbackend.nim b/codex/slots/proofs/asyncthreads.nim similarity index 100% rename from codex/slots/proofs/asyncbackend.nim rename to codex/slots/proofs/asyncthreads.nim