ECPair: enforce <= 0, not just ===
This commit is contained in:
parent
a72e608898
commit
a5196dedcb
@ -89,7 +89,7 @@ ECPair.makeRandom = function (options) {
|
||||
typeforce(types.Buffer256bit, buffer)
|
||||
|
||||
d = BigInteger.fromBuffer(buffer)
|
||||
} while (d.signum() === 0 || d.compareTo(secp256k1.n) >= 0)
|
||||
} while (d.signum() <= 0 || d.compareTo(secp256k1.n) >= 0)
|
||||
|
||||
return new ECPair(d, null, options)
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user