Fix receiving widget

This commit is contained in:
Maran 2012-12-13 16:43:56 +01:00
parent 096a8a8606
commit 9b07aca88f
1 changed files with 1 additions and 1 deletions

View File

@ -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"