Fix receiving widget
authorMaran <maran.hidskes@gmail.com>
Thu, 13 Dec 2012 15:43:56 +0000 (16:43 +0100)
committerMaran <maran.hidskes@gmail.com>
Thu, 13 Dec 2012 15:43:56 +0000 (16:43 +0100)
lib/receiving_widget.py

index 03a4a3f..5fa1693 100644 (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"