mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 17:31:36 +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):
|
||||
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
|
||||
|
|
Loading…
Add table
Reference in a new issue