Browse Source

remove alert

patch-2
Manuel Araoz 11 years ago
parent
commit
e9fa7e36ce
  1. 1
      lib/BIP32.js

1
lib/BIP32.js

@ -164,7 +164,6 @@ BIP32.prototype.extendedPublicKeyString = function(format) {
var data = Buffer.concat([this.extendedPublicKey, checksum]);
return base58.encode(data);
} else if (format === 'hex') {
alert('calc'+this.extendedPublicKey.toString('hex'));
return this.extendedPublicKey.toString('hex');;
} else {
throw new Error('bad format');

Loading…
Cancel
Save