|
|
|
@ -1542,8 +1542,8 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError): |
|
|
|
tx = self.wallet.make_unsigned_transaction( |
|
|
|
tx = self.wallet.make_unsigned_transaction( |
|
|
|
coins, outputs, self.config, fixed_fee=fee_estimator, |
|
|
|
coins, outputs, self.config, fixed_fee=fee_estimator, |
|
|
|
is_sweep=is_sweep) |
|
|
|
is_sweep=is_sweep) |
|
|
|
except NotEnoughFunds: |
|
|
|
except (NotEnoughFunds, NoDynamicFeeEstimates) as e: |
|
|
|
self.show_message(_("Insufficient funds")) |
|
|
|
self.show_message(str(e)) |
|
|
|
return |
|
|
|
return |
|
|
|
except BaseException as e: |
|
|
|
except BaseException as e: |
|
|
|
traceback.print_exc(file=sys.stdout) |
|
|
|
traceback.print_exc(file=sys.stdout) |
|
|
|
|