mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-28 16:01:30 +00:00
fix #2027
This commit is contained in:
parent
36d0dff092
commit
191ed8cc05
1 changed files with 1 additions and 1 deletions
|
@ -537,7 +537,7 @@ class Abstract_Wallet(PrintError):
|
|||
for addr in domain:
|
||||
utxos = self.get_addr_utxo(addr)
|
||||
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
|
||||
coins.append(x)
|
||||
continue
|
||||
|
|
Loading…
Add table
Reference in a new issue