mirror of
https://git.wownero.com/wownero/wownero-wallet-generator.git
synced 2024-08-15 01:03:32 +00:00
Fix QR code not being updated for wallets from prefix
Reported by Lloydimiller4
This commit is contained in:
parent
3ab744c4cb
commit
03299a1171
2 changed files with 17 additions and 13 deletions
|
@ -10502,7 +10502,11 @@ function genwallet_prefix_worker()
|
|||
spend_key_widget.innerHTML = keys.spend.sec;
|
||||
view_key_widget.innerHTML = keys.view.sec;
|
||||
address_widget.innerHTML = keys.public_addr;
|
||||
address_qr_widget.innerHTML = "";
|
||||
mnemonic_widget.innerHTML = mnemonic;
|
||||
|
||||
qr=new QRCode(address_qr_widget, {correctLevel:QRCode.CorrectLevel.L});
|
||||
qr.makeCode("monero:"+keys.public_addr);
|
||||
}
|
||||
|
||||
var zerohex="0000000000000000000000000000000000000000000000000000000000000000";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue