URI: 
       tFix receiving widget - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 9b07aca88fcc51fadd09bf3b4043547b7fcbffa0
   DIR parent 096a8a8606db1e9d799755a083480fde5464e9f7
  HTML Author: Maran <maran.hidskes@gmail.com>
       Date:   Thu, 13 Dec 2012 16:43:56 +0100
       
       Fix receiving widget
       
       Diffstat:
         M lib/receiving_widget.py             |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/lib/receiving_widget.py b/lib/receiving_widget.py
       t@@ -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"