This commit is contained in:
SomberNight 2018-03-15 14:17:27 +01:00
parent a02bd2c183
commit 71dff2a06e

View file

@ -2308,7 +2308,11 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError):
self.pay_to_URI(data) self.pay_to_URI(data)
return return
# else if the user scanned an offline signed tx # else if the user scanned an offline signed tx
data = bh2u(bitcoin.base_decode(data, length=None, base=43)) try:
data = bh2u(bitcoin.base_decode(data, length=None, base=43))
except BaseException as e:
self.show_error((_('Could not decode QR code')+':\n{}').format(e))
return
tx = self.tx_from_text(data) tx = self.tx_from_text(data)
if not tx: if not tx:
return return