From 3b8c8c712d9150fab65019d43b844e5ef1a2ce8a Mon Sep 17 00:00:00 2001 From: ThomasV Date: Fri, 13 Oct 2017 13:47:32 +0200 Subject: [PATCH] fix #3038 --- lib/network.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/network.py b/lib/network.py index 53874718a..08a366a34 100644 --- 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