From 4de69bee4b567f601b7cbf4210109a526737e2e7 Mon Sep 17 00:00:00 2001 From: Mikunj Date: Fri, 11 Jan 2019 13:13:41 +1100 Subject: [PATCH] Reduced PoW difficulty to 100 on production. --- libloki/proof-of-work.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libloki/proof-of-work.js b/libloki/proof-of-work.js index 074ba3889..a1f01502e 100644 --- a/libloki/proof-of-work.js +++ b/libloki/proof-of-work.js @@ -2,7 +2,7 @@ const NONCE_LEN = 8; // Modify this value for difficulty scaling const DEV_NONCE_TRIALS = 10; -const PROD_NONCE_TRIALS = 1000; +const PROD_NONCE_TRIALS = 100; const pow = { // Increment Uint8Array nonce by '_increment' with carrying