fix error message
This commit is contained in:
parent
c345d5dd19
commit
e6a88118ae
|
@ -60,7 +60,7 @@ ECDSA.prototype.randomK = function() {
|
||||||
ECDSA.prototype.sig2pubkey = function() {
|
ECDSA.prototype.sig2pubkey = function() {
|
||||||
var i = this.sig.i;
|
var i = this.sig.i;
|
||||||
if (!(i === 0 || i === 1 || i === 2 || i === 3))
|
if (!(i === 0 || i === 1 || i === 2 || i === 3))
|
||||||
throw new Error('signature: i must be equal to 0, 1, 2, or 3');
|
throw new Error('i must be equal to 0, 1, 2, or 3');
|
||||||
|
|
||||||
var e = BN().fromBuffer(this.hashbuf);
|
var e = BN().fromBuffer(this.hashbuf);
|
||||||
var r = this.sig.r;
|
var r = this.sig.r;
|
||||||
|
|
Loading…
Reference in New Issue