mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-28 07:51:27 +00:00
fix prioritization
This commit is contained in:
parent
8bf46954a0
commit
c51cf776ae
1 changed files with 1 additions and 0 deletions
|
@ -554,6 +554,7 @@ class Wallet:
|
||||||
h = self.history.get(addr, [])
|
h = self.history.get(addr, [])
|
||||||
if h == ['*']: continue
|
if h == ['*']: continue
|
||||||
for tx_hash, tx_height in h:
|
for tx_hash, tx_height in h:
|
||||||
|
tx = self.transactions.get(tx_hash)
|
||||||
for output in tx.get('outputs'):
|
for output in tx.get('outputs'):
|
||||||
if output.get('address') != addr: continue
|
if output.get('address') != addr: continue
|
||||||
key = tx_hash + ":%d" % output.get('index')
|
key = tx_hash + ":%d" % output.get('index')
|
||||||
|
|
Loading…
Add table
Reference in a new issue