Skip to content

Commit

Permalink
Fix Private QR code showing public key
Browse files Browse the repository at this point in the history
  • Loading branch information
MidnightLightning committed Aug 16, 2012
1 parent 5fc1a91 commit 4b33ab8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bitaddress.org.html
Original file line number Diff line number Diff line change
Expand Up @@ -4301,7 +4301,7 @@
ninja.qrCode.showQrCode(keyValuePair, 175);

var keyValuePair = {}
keyValuePair["qrcode_private" + idPostFix] = bitcoinAddress;
keyValuePair["qrcode_private" + idPostFix] = privateKeyWif;
ninja.qrCode.showQrCode(keyValuePair, 200);
}
// browsers that failed to generate keys
Expand Down

1 comment on commit 4b33ab8

@MidnightLightning
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks to BTC-engineer for reporting this bug.

Please sign in to comment.