Browse Source

ECPair: loop until within interval

hk-custom-address
Daniel Cousens 9 years ago
parent
commit
a72e608898
  1. 2
      src/ecpair.js

2
src/ecpair.js

@ -89,7 +89,7 @@ ECPair.makeRandom = function (options) {
typeforce(types.Buffer256bit, buffer)
d = BigInteger.fromBuffer(buffer)
} while (d.compareTo(secp256k1.n) >= 0)
} while (d.signum() === 0 || d.compareTo(secp256k1.n) >= 0)
return new ECPair(d, null, options)
}

Loading…
Cancel
Save