tx dialog: don't use tx.raw

This commit is contained in:
ThomasV 2016-02-12 15:20:34 +01:00
parent 779245dafd
commit cc526a8734
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ class TxDialog(QDialog, MessageBoxMixin):
dialogs.remove(self)
def show_qr(self):
text = self.tx.raw.decode('hex')
text = str(self.tx).decode('hex')
text = base_encode(text, base=43)
try:
self.main_window.show_qrcode(text, 'Transaction', parent=self)