tfix #2027 - electrum - Electrum Bitcoin wallet
 (HTM) git clone https://git.parazyd.org/electrum
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
       ---
 (DIR) commit 191ed8cc051f79f0de01dcdfcc6a4e06ab36c765
 (DIR) parent 36d0dff092290e4e013da8ea963d3b8557442335
 (HTM) Author: ThomasV <thomasv@electrum.org>
       Date:   Tue,  8 Nov 2016 16:59:15 +0100
       
       fix #2027
       
       Diffstat:
         M lib/wallet.py                       |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/lib/wallet.py b/lib/wallet.py
       t@@ -537,7 +537,7 @@ class Abstract_Wallet(PrintError):
                for addr in domain:
                    utxos = self.get_addr_utxo(addr)
                    for x in utxos:
       -                if x['coinbase'] and x['tx_height'] + COINBASE_MATURITY > self.get_local_height():
       +                if x['coinbase'] and x['height'] + COINBASE_MATURITY > self.get_local_height():
                            continue
                        coins.append(x)
                        continue