From 2450c1d481cb92c7659ca307a0eef91369442918 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sun, 8 Jan 2017 13:14:15 +0100 Subject: [PATCH] fix typo --- lib/wallet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/wallet.py b/lib/wallet.py index 92aeda22d..76832d9e7 100644 --- a/lib/wallet.py +++ b/lib/wallet.py @@ -533,7 +533,7 @@ class Abstract_Wallet(PrintError): return c, u, x def get_spendable_coins(self, domain = None): - return self.get_utxos(self, domain, exclude_frozen=True, mature=True) + return self.get_utxos(domain, exclude_frozen=True, mature=True) def get_utxos(self, domain = None, exclude_frozen = False, mature = False): coins = []