use the correct accessor for the current currency details
This commit is contained in:
parent
73c19592ac
commit
f69e3aea6e
1 changed files with 3 additions and 3 deletions
|
@ -130,7 +130,7 @@ Bitcoin.ECKey = (function () {
|
||||||
// Sipa Private Key Wallet Import Format
|
// Sipa Private Key Wallet Import Format
|
||||||
ECKey.prototype.getBitcoinWalletImportFormat = function () {
|
ECKey.prototype.getBitcoinWalletImportFormat = function () {
|
||||||
var bytes = this.getBitcoinPrivateKeyByteArray();
|
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
|
if (this.compressed) bytes.push(0x01); // append 0x01 byte for compressed format
|
||||||
var checksum = Crypto.SHA256(Crypto.SHA256(bytes, { asBytes: true }), { asBytes: true });
|
var checksum = Crypto.SHA256(Crypto.SHA256(bytes, { asBytes: true }), { asBytes: true });
|
||||||
bytes = bytes.concat(checksum.slice(0, 4));
|
bytes = bytes.concat(checksum.slice(0, 4));
|
||||||
|
@ -193,7 +193,7 @@ Bitcoin.ECKey = (function () {
|
||||||
}
|
}
|
||||||
var version = hash.shift();
|
var version = hash.shift();
|
||||||
// TODO: detect currency
|
// TODO: detect currency
|
||||||
if (version != janin.selectedCurrency.privateKeyPrefix) {
|
if (version != janin.currency.privateKeyPrefix()) {
|
||||||
throw "Version " + version + " not supported!";
|
throw "Version " + version + " not supported!";
|
||||||
}
|
}
|
||||||
return hash;
|
return hash;
|
||||||
|
@ -214,7 +214,7 @@ Bitcoin.ECKey = (function () {
|
||||||
}
|
}
|
||||||
var version = hash.shift();
|
var version = hash.shift();
|
||||||
// TODO: detect currency
|
// TODO: detect currency
|
||||||
if (version != janin.selectedCurrency.privateKeyPrefix) {
|
if (version != janin.currency.privateKeyPrefix()) {
|
||||||
throw "Version " + version + " not supported!";
|
throw "Version " + version + " not supported!";
|
||||||
}
|
}
|
||||||
hash.pop();
|
hash.pop();
|
||||||
|
|
Loading…
Add table
Reference in a new issue