mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 09:21:39 +00:00
Fix receiving widget
This commit is contained in:
parent
096a8a8606
commit
9b07aca88f
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ class ReceivingWidget(QTreeWidget):
|
|||
history = self.owner.actuator.wallet.history.get(address,[])
|
||||
|
||||
used = "No"
|
||||
for tx_hash, tx_height in history:
|
||||
for tx_hash in history:
|
||||
tx = self.owner.actuator.wallet.transactions.get(tx_hash)
|
||||
if tx:
|
||||
used = "Yes"
|
||||
|
|
Loading…
Add table
Reference in a new issue