work around windows
This commit is contained in:
parent
6b161a1716
commit
f5725a8505
|
@ -31,7 +31,8 @@ proc prove*[H](
|
||||||
): Future[?!CircomProof] {.async.} =
|
): Future[?!CircomProof] {.async.} =
|
||||||
## Generates proof using circom-compat asynchronously
|
## Generates proof using circom-compat asynchronously
|
||||||
##
|
##
|
||||||
without queue =? newSignalQueue[?!CircomProof](maxItems = 1), err:
|
let queueRes: ?!SignalQueuePtr[?!CircomProof] = newSignalQueue[?!CircomProof](maxItems = 1)
|
||||||
|
without queue =? queueRes, err:
|
||||||
return failure(err)
|
return failure(err)
|
||||||
|
|
||||||
proc spawnTask() =
|
proc spawnTask() =
|
||||||
|
|
Loading…
Reference in New Issue