mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 09:21:39 +00:00
fix #3038
This commit is contained in:
parent
beffd3c006
commit
3b8c8c712d
1 changed files with 1 additions and 1 deletions
|
@ -1020,7 +1020,7 @@ class Network(util.DaemonThread):
|
||||||
def get_blockchains(self):
|
def get_blockchains(self):
|
||||||
out = {}
|
out = {}
|
||||||
for k, b in self.blockchains.items():
|
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:
|
if r:
|
||||||
out[k] = r
|
out[k] = r
|
||||||
return out
|
return out
|
||||||
|
|
Loading…
Add table
Reference in a new issue