ThomasV 10 years ago
parent
commit
1b3f450267
  1. 7
      gui/qt/main_window.py

7
gui/qt/main_window.py

@ -1239,9 +1239,10 @@ class ElectrumWindow(QMainWindow):
outputs, fee, tx_desc, coins = r outputs, fee, tx_desc, coins = r
try: try:
tx = self.wallet.make_unsigned_transaction(coins, outputs, self.config, fee) tx = self.wallet.make_unsigned_transaction(coins, outputs, self.config, fee)
if not tx: except NotEnoughFunds:
raise BaseException(_("Insufficient funds")) self.show_message(_("Insufficient funds"))
except Exception as e: return
except BaseException as e:
traceback.print_exc(file=sys.stdout) traceback.print_exc(file=sys.stdout)
self.show_message(str(e)) self.show_message(str(e))
return return

Loading…
Cancel
Save