Browse Source

Fix receiving widget

283
Maran 12 years ago
parent
commit
9b07aca88f
  1. 2
      lib/receiving_widget.py

2
lib/receiving_widget.py

@ -42,7 +42,7 @@ class ReceivingWidget(QTreeWidget):
history = self.owner.actuator.wallet.history.get(address,[]) history = self.owner.actuator.wallet.history.get(address,[])
used = "No" used = "No"
for tx_hash, tx_height in history: for tx_hash in history:
tx = self.owner.actuator.wallet.transactions.get(tx_hash) tx = self.owner.actuator.wallet.transactions.get(tx_hash)
if tx: if tx:
used = "Yes" used = "Yes"

Loading…
Cancel
Save