kivy fix: get_spendable_coins
This commit is contained in:
@@ -272,8 +272,8 @@ class SendScreen(CScreen):
|
|||||||
|
|
||||||
def _do_send(self, amount, message, outputs, rbf):
|
def _do_send(self, amount, message, outputs, rbf):
|
||||||
# make unsigned transaction
|
# make unsigned transaction
|
||||||
coins = self.app.wallet.get_spendable_coins()
|
|
||||||
config = self.app.electrum_config
|
config = self.app.electrum_config
|
||||||
|
coins = self.app.wallet.get_spendable_coins(None, config)
|
||||||
try:
|
try:
|
||||||
tx = self.app.wallet.make_unsigned_transaction(coins, outputs, config, None)
|
tx = self.app.wallet.make_unsigned_transaction(coins, outputs, config, None)
|
||||||
except NotEnoughFunds:
|
except NotEnoughFunds:
|
||||||
|
|||||||
Reference in New Issue
Block a user