From ec41ad4a9892fd894baa74c827b0a55e619397a3 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sat, 15 Jul 2017 23:40:43 +0200 Subject: [PATCH] kivy fix: get_spendable_coins --- gui/kivy/uix/screens.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/kivy/uix/screens.py b/gui/kivy/uix/screens.py index af424b4a..cfcd748c 100644 --- a/gui/kivy/uix/screens.py +++ b/gui/kivy/uix/screens.py @@ -272,8 +272,8 @@ class SendScreen(CScreen): def _do_send(self, amount, message, outputs, rbf): # make unsigned transaction - coins = self.app.wallet.get_spendable_coins() config = self.app.electrum_config + coins = self.app.wallet.get_spendable_coins(None, config) try: tx = self.app.wallet.make_unsigned_transaction(coins, outputs, config, None) except NotEnoughFunds: