Remove useless code

This commit is contained in:
Loic Guegan 2022-09-06 15:46:32 +02:00
parent 0723d0d6db
commit 8252ecb385

View file

@ -200,9 +200,7 @@ class Node:
ack=None
while True:
ack=self.rqueue.get() # Wait for simulator acknowledgments
if ack[0] == "plugin_notify":
self.plugin_notify(ack[1],ack[2]) # TODO: what is ack_types received before "plugin_notify" ?
elif ack[0] not in ack_types:
if ack[0] not in ack_types:
ack_buffer.append(ack)
else:
break