commit 2450c1d481cb92c7659ca307a0eef91369442918
parent 7af5d42324041204967b7d9c0865ddb8c2eb2712
Author: ThomasV <thomasv@electrum.org>
Date: Sun, 8 Jan 2017 13:14:15 +0100
fix typo
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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 = []