Browse Source

Fixes #78

hk-custom-address
Daniel Cousens 11 years ago
parent
commit
a1be488d1b
  1. 2
      src/eckey.js

2
src/eckey.js

@ -14,7 +14,7 @@ var ecparams = sec("secp256k1");
// input can be nothing, array of bytes, hex string, or base58 string
var ECKey = function (input,compressed,version) {
if (!(this instanceof ECKey)) { return new ECKey(input,compressed); }
if (!(this instanceof ECKey)) { return new ECKey(input,compressed,version); }
if (!input) {
// Generate new key
var n = ecparams.getN();

Loading…
Cancel
Save