tfix #4503 - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit c6ccdbef90de0a96b5354125d090fc4dea8443cd DIR parent c33363c1e5f4c11ed1001dcdcd27fe08d2254544 HTML Author: SomberNight <somber.night@protonmail.com> Date: Sun, 8 Jul 2018 02:22:28 +0200 fix #4503 Diffstat: M gui/kivy/main_window.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) --- DIR diff --git a/gui/kivy/main_window.py b/gui/kivy/main_window.py t@@ -69,7 +69,7 @@ Label.register('Roboto', from electrum.util import (base_units, NoDynamicFeeEstimates, decimal_point_to_base_unit_name, - base_unit_name_to_decimal_point) + base_unit_name_to_decimal_point, NotEnoughFunds) class ElectrumWindow(App): t@@ -714,6 +714,8 @@ class ElectrumWindow(App): except NoDynamicFeeEstimates as e: Clock.schedule_once(lambda dt, bound_e=e: self.show_error(str(bound_e))) return '' + except NotEnoughFunds: + return '' amount = tx.output_value() __, x_fee_amount = run_hook('get_tx_extra_fee', self.wallet, tx) or (None, 0) amount_after_all_fees = amount - x_fee_amount