mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-04 21:05:11 +00:00
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:
parent
bddb0bfcdd
commit
821431a239
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue