From f69e3aea6ecb77fa4c09ec0155172c6d4aadbcee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Mur=C3=A9?= Date: Wed, 19 Mar 2014 22:59:04 +0100 Subject: [PATCH] use the correct accessor for the current currency details --- src/bitcoinjs-lib.eckey.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bitcoinjs-lib.eckey.js b/src/bitcoinjs-lib.eckey.js index 99e479d..f73c5da 100644 --- a/src/bitcoinjs-lib.eckey.js +++ b/src/bitcoinjs-lib.eckey.js @@ -130,7 +130,7 @@ Bitcoin.ECKey = (function () { // Sipa Private Key Wallet Import Format ECKey.prototype.getBitcoinWalletImportFormat = function () { var bytes = this.getBitcoinPrivateKeyByteArray(); - bytes.unshift(janin.selectedCurrency.privateKeyPrefix); // prepend private key prefix + bytes.unshift(janin.currency.privateKeyPrefix()); // prepend private key prefix if (this.compressed) bytes.push(0x01); // append 0x01 byte for compressed format var checksum = Crypto.SHA256(Crypto.SHA256(bytes, { asBytes: true }), { asBytes: true }); bytes = bytes.concat(checksum.slice(0, 4)); @@ -193,7 +193,7 @@ Bitcoin.ECKey = (function () { } var version = hash.shift(); // TODO: detect currency - if (version != janin.selectedCurrency.privateKeyPrefix) { + if (version != janin.currency.privateKeyPrefix()) { throw "Version " + version + " not supported!"; } return hash; @@ -214,7 +214,7 @@ Bitcoin.ECKey = (function () { } var version = hash.shift(); // TODO: detect currency - if (version != janin.selectedCurrency.privateKeyPrefix) { + if (version != janin.currency.privateKeyPrefix()) { throw "Version " + version + " not supported!"; } hash.pop();