ThomasV 8 years ago
parent
commit
191ed8cc05
  1. 2
      lib/wallet.py

2
lib/wallet.py

@ -537,7 +537,7 @@ class Abstract_Wallet(PrintError):
for addr in domain: for addr in domain:
utxos = self.get_addr_utxo(addr) utxos = self.get_addr_utxo(addr)
for x in utxos: for x in utxos:
if x['coinbase'] and x['tx_height'] + COINBASE_MATURITY > self.get_local_height(): if x['coinbase'] and x['height'] + COINBASE_MATURITY > self.get_local_height():
continue continue
coins.append(x) coins.append(x)
continue continue

Loading…
Cancel
Save