diff --git a/bitaddress.org.html b/bitaddress.org.html index 9fbee11..e4e841b 100644 --- a/bitaddress.org.html +++ b/bitaddress.org.html @@ -3763,7 +3763,7 @@ return privWif; }; - // Compressed Sipa Private Key Wallet Import Format (added by coretechs) + // Compressed Sipa Private Key Wallet Import Format ECKey.prototype.getBitcoinWalletImportFormatComp = function () { // Get a copy of private key as a byte array var bytes = this.priv.toByteArrayUnsigned(); @@ -4417,7 +4417,7 @@ var key = new Bitcoin.ECKey(false); bulkWallet.csv.push((bulkWallet.csvRowLimit - bulkWallet.csvRowsRemaining + bulkWallet.csvStartIndex) - + ",\"" + key.getBitcoinAddress() + "\",\"" + key.getBitcoinWalletImportFormat() + + ",\"" + key.getBitcoinAddress() + "\",\"" + key.toString("wif") + "\",\"" + key.toString("wifcomp") //+ "\",\"" + key.getBitcoinHexFormat() + "\",\"" + key.toString("base64") // uncomment this line to add different private key formats to the CSV + "\"");