electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 3b8c8c712d9150fab65019d43b844e5ef1a2ce8a
parent beffd3c0065da244649e975e88fbb362e48c446d
Author: ThomasV <thomasv@electrum.org>
Date:   Fri, 13 Oct 2017 13:47:32 +0200

fix #3038

Diffstat:
Mlib/network.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/network.py b/lib/network.py @@ -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