electrum

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

commit ec41ad4a9892fd894baa74c827b0a55e619397a3
parent 43c5657cb60c044beb0db839e33ea53d590c2471
Author: ThomasV <thomasv@electrum.org>
Date:   Sat, 15 Jul 2017 23:40:43 +0200

kivy fix: get_spendable_coins

Diffstat:
Mgui/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 @@ -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: