URI: 
       tkivy fix: get_spendable_coins - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit ec41ad4a9892fd894baa74c827b0a55e619397a3
   DIR parent 43c5657cb60c044beb0db839e33ea53d590c2471
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Sat, 15 Jul 2017 23:40:43 +0200
       
       kivy fix: get_spendable_coins
       
       Diffstat:
         M gui/kivy/uix/screens.py             |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/gui/kivy/uix/screens.py b/gui/kivy/uix/screens.py
       t@@ -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: