Do not send empty messages packets at interval

This commit is contained in:
kdeme 2019-12-03 16:49:20 +01:00
parent 146eeddd65
commit 2dcccf19b2
2 changed files with 10 additions and 8 deletions

View File

@ -270,6 +270,7 @@ proc processQueue(peer: Peer) =
envelopes.add(message.env)
wakuPeer.received.incl(message)
if envelopes.len() > 0:
trace "Sending envelopes", amount=envelopes.len
# Ignore failure of sending messages, this could occur when the connection
# gets dropped

View File

@ -265,6 +265,7 @@ proc processQueue(peer: Peer) =
envelopes.add(message.env)
whisperPeer.received.incl(message)
if envelopes.len() > 0:
trace "Sending envelopes", amount=envelopes.len
# Ignore failure of sending messages, this could occur when the connection
# gets dropped