mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
subtle typo
This commit is contained in:
parent
8a71e46e9b
commit
2dca7bd39c
1 changed files with 1 additions and 1 deletions
|
@ -431,7 +431,7 @@ class Abstract_Wallet(PrintError):
|
|||
return height, pos
|
||||
elif tx_hash in self.unverified_tx:
|
||||
height = self.unverified_tx[tx_hash]
|
||||
return (height, 0) if height>0 else (1e9 - height), 0
|
||||
return (height, 0) if height > 0 else ((1e9 - height), 0)
|
||||
else:
|
||||
return (1e9+1, 0)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue