From 986985c3988b34d09ddd3fbfb984f4445d308d77 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Thu, 12 Apr 2018 16:44:59 +0200 Subject: [PATCH] fix #4255 --- gui/kivy/main_window.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gui/kivy/main_window.py b/gui/kivy/main_window.py index f16a963ba..353678242 100644 --- a/gui/kivy/main_window.py +++ b/gui/kivy/main_window.py @@ -662,6 +662,8 @@ class ElectrumWindow(App): def get_max_amount(self): inputs = self.wallet.get_spendable_coins(None, self.electrum_config) + if not inputs: + return '' addr = str(self.send_screen.screen.address) or self.wallet.dummy_address() outputs = [(TYPE_ADDRESS, addr, '!')] tx = self.wallet.make_unsigned_transaction(inputs, outputs, self.electrum_config)