Post
Topic
Board Announcements (Altcoins)
Re: [XC][XCurrency] Decentralised Trustless Privacy Platform / Encrypted XChat / Pos
by
CryptoGretzky
on 29/08/2014, 04:56:19 UTC

If you want the BIP38 generated address to be the same compressed format as the wallet (right now, it's in uncompressed format so it's not matching what you see in the receive coins address list):



You will have to make the following change to line 7340:

Change the false (2nd parameters):

Code:
ninja.privateKey.BIP38GenerateECAddressAsync(ninja.wallets.paperwallet.intermediatePoint, false, function (address, encryptedKey) {

to true:

Code:
ninja.privateKey.BIP38GenerateECAddressAsync(ninja.wallets.paperwallet.intermediatePoint, true, function (address, encryptedKey) {

Refresh the page.  The generated address is now the same as you will see in the wallet and it will be easier for you to find an address that you like as a semi vanity address!