mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 09:21:39 +00:00
fix #802
This commit is contained in:
parent
d70c9d1ab7
commit
8314efdfd5
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@ def on_wallet_update():
|
||||||
if not tx: continue
|
if not tx: continue
|
||||||
if wallet.verifier.get_confirmations(tx_hash) < requested_confs: continue
|
if wallet.verifier.get_confirmations(tx_hash) < requested_confs: continue
|
||||||
for o in tx.outputs:
|
for o in tx.outputs:
|
||||||
o_address, o_value = o
|
o_type, o_address, o_value = o
|
||||||
if o_address == addr:
|
if o_address == addr:
|
||||||
value += o_value
|
value += o_value
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue