From b96328cbee74045cb201a351429cf25bcc14292b Mon Sep 17 00:00:00 2001 From: Jaremy Creechley Date: Mon, 20 May 2024 22:06:43 +0300 Subject: [PATCH] work around windows - no without --- codex/slots/proofs/backends/asynccircoms.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/codex/slots/proofs/backends/asynccircoms.nim b/codex/slots/proofs/backends/asynccircoms.nim index 3c726840..5032f372 100644 --- a/codex/slots/proofs/backends/asynccircoms.nim +++ b/codex/slots/proofs/backends/asynccircoms.nim @@ -43,8 +43,8 @@ proc prove*[H]( let taskRes = await queue.recvAsync() if (let res = queue.release(); res.isErr): error "Error releasing proof queue ", msg = res.error().msg - without proofRes =? taskRes, err: - return failure(err) + without proofRes =? taskRes, exc: + return failure(exc) without proof =? proofRes, err: return failure(err)