Trial value wasn't being initialised big enough for very low difficulty, also development should not have been there but I don't think it was doing anything

pull/300/head
Beaudan 6 years ago
parent 971aef0c1b
commit ca31649207

@ -46,7 +46,6 @@ function calcPoW(
ttl, ttl,
pubKey, pubKey,
data, data,
development,
difficulty = undefined, difficulty = undefined,
increment = 1, increment = 1,
startNonce = 0 startNonce = 0
@ -56,7 +55,6 @@ function calcPoW(
ttl, ttl,
pubKey, pubKey,
data, data,
development,
difficulty, difficulty,
increment, increment,
startNonce startNonce

@ -77,9 +77,7 @@ const pow = {
let nonce = new Uint8Array(NONCE_LEN); let nonce = new Uint8Array(NONCE_LEN);
nonce = pow.incrementNonce(nonce, startNonce); // initial value nonce = pow.incrementNonce(nonce, startNonce); // initial value
let trialValue = pow.bigIntToUint8Array( let trialValue = new Uint8Array([255, 255, 255, 255, 255, 255, 255, 255]);
JSBI.BigInt(Number.MAX_SAFE_INTEGER)
);
const initialHash = new Uint8Array( const initialHash = new Uint8Array(
await crypto.subtle.digest('SHA-512', payload) await crypto.subtle.digest('SHA-512', payload)
); );

Loading…
Cancel
Save