diff --git a/RNS/Interfaces/LocalInterface.py b/RNS/Interfaces/LocalInterface.py index 09b6bd8..dcb77cd 100644 --- a/RNS/Interfaces/LocalInterface.py +++ b/RNS/Interfaces/LocalInterface.py @@ -152,10 +152,6 @@ class LocalClientInterface(Interface): def processOutgoing(self, data): if self.online: - # TODO: Reset maybe? - while self.writing: - time.sleep(0.0005) - try: self.writing = True data = bytes([HDLC.FLAG])+HDLC.escape(data)+bytes([HDLC.FLAG])