diff --git a/lib/commands.py b/lib/commands.py index 167978427..bccf49872 100644 --- a/lib/commands.py +++ b/lib/commands.py @@ -146,7 +146,7 @@ class Commands: return self.network.synchronous_get([ ('blockchain.address.get_history',[addr]) ])[0] def listunspent(self): - l = copy.deepcopy(self.wallet.get_unspent_coins()) + l = copy.deepcopy(self.wallet.get_spendable_coins()) for i in l: i["value"] = str(Decimal(i["value"])/100000000) return l @@ -159,7 +159,7 @@ class Commands: return {'address':r[0] } def createrawtransaction(self, inputs, outputs): - coins = self.wallet.get_unspent_coins(None) + coins = self.wallet.get_spendable_coins(None) tx_inputs = [] for i in inputs: prevout_hash = i['txid']