mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-02 02:05:19 +00:00
fix
This commit is contained in:
parent
8f090e1d01
commit
fd8687ce18
1 changed files with 1 additions and 2 deletions
|
@ -336,8 +336,7 @@ class Wallet:
|
||||||
for tx_hash, tx in self.transactions.items():
|
for tx_hash, tx in self.transactions.items():
|
||||||
is_send, _, _ = self.get_tx_value(tx)
|
is_send, _, _ = self.get_tx_value(tx)
|
||||||
if is_send:
|
if is_send:
|
||||||
for o in tx.outputs:
|
for addr, v in tx.outputs:
|
||||||
addr = o.get('address')
|
|
||||||
if not self.is_mine(addr) and addr not in self.addressbook:
|
if not self.is_mine(addr) and addr not in self.addressbook:
|
||||||
self.addressbook.append(addr)
|
self.addressbook.append(addr)
|
||||||
# redo labels
|
# redo labels
|
||||||
|
|
Loading…
Add table
Reference in a new issue