mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-27 15:31:31 +00:00
parentheses
This commit is contained in:
parent
864aebff7e
commit
777f423b7a
1 changed files with 1 additions and 1 deletions
|
@ -700,7 +700,7 @@ class Wallet:
|
|||
balance = c + u - balance
|
||||
for tx in history:
|
||||
tx_hash = tx['tx_hash']
|
||||
conf, timestamp = self.verifier.get_confirmations(tx_hash) if self.verifier else None, None
|
||||
conf, timestamp = self.verifier.get_confirmations(tx_hash) if self.verifier else (None, None)
|
||||
is_mine, value, fee = self.get_tx_value(tx_hash)
|
||||
if value is not None:
|
||||
balance += value
|
||||
|
|
Loading…
Add table
Reference in a new issue