electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit c6ccdbef90de0a96b5354125d090fc4dea8443cd
parent c33363c1e5f4c11ed1001dcdcd27fe08d2254544
Author: SomberNight <somber.night@protonmail.com>
Date:   Sun,  8 Jul 2018 02:22:28 +0200

fix #4503

Diffstat:
Mgui/kivy/main_window.py | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gui/kivy/main_window.py b/gui/kivy/main_window.py @@ -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): @@ -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