From eb22397ca793cbfddeb9a0c8981e553428d9ae12 Mon Sep 17 00:00:00 2001 From: Jaremy Creechley Date: Mon, 20 May 2024 18:58:29 +0300 Subject: [PATCH] implement async verify --- codex/slots/proofs/backends/asynccircoms.nim | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/codex/slots/proofs/backends/asynccircoms.nim b/codex/slots/proofs/backends/asynccircoms.nim index 0d971e2a..70fc8508 100644 --- a/codex/slots/proofs/backends/asynccircoms.nim +++ b/codex/slots/proofs/backends/asynccircoms.nim @@ -75,12 +75,11 @@ proc verify*[H]( error "Error releasing proof queue ", msg = res.error().msg without verifyRes =? taskRes, err: return failure(err) - without verified =? verifyRes , err: + without verified =? verifyRes, err: return failure(err) success(verified) - proc init*(_: type AsyncCircomCompat, params: CircomCompatParams): AsyncCircomCompat = ## Create a new async circom ##