From 155c98a7496e26e7fb7864bcaeeabf23cf92d89b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Moreau?= <cem.moreau@gmail.com> Date: Thu, 28 Dec 2017 00:01:06 +0100 Subject: [PATCH] [fix] #1234 Need at least 1ms for PoW pauses --- app/modules/prover/lib/proof.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/modules/prover/lib/proof.ts b/app/modules/prover/lib/proof.ts index 546bf676a..c08fde11e 100644 --- a/app/modules/prover/lib/proof.ts +++ b/app/modules/prover/lib/proof.ts @@ -187,7 +187,7 @@ export function createPowWorker() { i++; testsCount++; if (i % pausePeriod === 0) { - await countDown(0); // Very low pause, just the time to process eventual end of the turn + await countDown(1); // Very low pause, just the time to process eventual end of the turn } } } -- GitLab