fix crash in lnworker main_loop

This commit is contained in:
ThomasV 2018-07-16 11:14:06 +02:00
parent 18bc5aa27b
commit b5f0209a56

View file

@ -53,7 +53,6 @@ class LNWorker(PrintError):
def suggest_peer(self):
for node_id, peer in self.peers.items():
print(bh2u(node_id), len(peer.channels))
if len(peer.channels) > 0:
continue
if not(peer.initialized.done()):
@ -206,6 +205,8 @@ class LNWorker(PrintError):
self.peers.pop(k)
if len(self.peers) > 3:
continue
if not self.network.lightning_nodes:
continue
node_id = random.choice(list(self.network.lightning_nodes.keys()))
node = self.network.lightning_nodes.get(node_id)
addresses = node.get('addresses')