Merge pull request #129 from Mikunj/pow-difficulty

Reduced PoW difficulty to 100 on production.
pull/133/head
Mikunj Varsani 6 years ago committed by GitHub
commit d97ee35f12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

Loading…
Cancel
Save