tfix #3038 - electrum - Electrum Bitcoin wallet
 (HTM) git clone https://git.parazyd.org/electrum
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
       ---
 (DIR) commit 3b8c8c712d9150fab65019d43b844e5ef1a2ce8a
 (DIR) parent beffd3c0065da244649e975e88fbb362e48c446d
 (HTM) Author: ThomasV <thomasv@electrum.org>
       Date:   Fri, 13 Oct 2017 13:47:32 +0200
       
       fix #3038
       
       Diffstat:
         M lib/network.py                      |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/lib/network.py b/lib/network.py
       t@@ -1020,7 +1020,7 @@ class Network(util.DaemonThread):
            def get_blockchains(self):
                out = {}
                for k, b in self.blockchains.items():
       -            r = list(filter(lambda i: i.blockchain==b, self.interfaces.values()))
       +            r = list(filter(lambda i: i.blockchain==b, list(self.interfaces.values())))
                    if r:
                        out[k] = r
                return out