kivy fix: get_spendable_coins

This commit is contained in:
ThomasV 2017-07-15 23:40:43 +02:00
parent 43c5657cb6
commit ec41ad4a98
1 changed files with 1 additions and 1 deletions

View File

@ -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: