ECPair: makeRandom, fix comparison
This commit is contained in:
parent
b12f559b85
commit
96c04d0787
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ ECPair.makeRandom = function (options) {
|
||||||
typeforce(types.Buffer256bit, buffer)
|
typeforce(types.Buffer256bit, buffer)
|
||||||
|
|
||||||
d = BigInteger.fromBuffer(buffer)
|
d = BigInteger.fromBuffer(buffer)
|
||||||
} while (d.compareTo(secp256k1.n) > 0)
|
} while (d.compareTo(secp256k1.n) >= 0)
|
||||||
|
|
||||||
return new ECPair(d, null, options)
|
return new ECPair(d, null, options)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue