work around windows - no without

This commit is contained in:
Jaremy Creechley 2024-05-20 22:06:43 +03:00
parent 1c969278d7
commit b96328cbee
No known key found for this signature in database
GPG Key ID: 4E66FB67B21D3300
1 changed files with 2 additions and 2 deletions

View File

@ -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)