lnpeer: move ping_if_required away from message_loop

If our connection dies because we went to sleep, message_loop
will stall and ping_if_required will never be called.
This commit is contained in:
ThomasV 2020-04-13 11:34:58 +02:00
parent bddb0bfcdd
commit 821431a239

View file

@ -463,7 +463,6 @@ class Peer(Logger):
async for msg in self.transport.read_messages():
self.process_message(msg)
await asyncio.sleep(.01)
self.ping_if_required()
def on_reply_short_channel_ids_end(self, payload):
self.querying.set()
@ -1452,8 +1451,10 @@ class Peer(Logger):
return closing_tx.txid()
async def htlc_switch(self):
await self.initialized
while True:
await asyncio.sleep(0.1)
self.ping_if_required()
for chan_id, chan in self.channels.items():
if not chan.can_send_ctx_updates():
continue