From c18997bf5b36dcc827a10880dca334104c46510a Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Tue, 4 Oct 2022 22:41:58 +0200 Subject: [PATCH] Cleanup --- RNS/Transport.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/RNS/Transport.py b/RNS/Transport.py index 04422b8..cd61275 100755 --- a/RNS/Transport.py +++ b/RNS/Transport.py @@ -1242,7 +1242,6 @@ class Transport: attached_interface ] - # If we have any local clients connected, we re- # transmit the announce to them immediately if (len(Transport.local_client_interfaces)): @@ -1319,7 +1318,6 @@ class Transport: new_announce.hops = packet.hops new_announce.send() - destination_table_entry = [now, received_from, announce_hops, expires, random_blobs, packet.receiving_interface, packet] Transport.destination_table[packet.destination_hash] = destination_table_entry RNS.log("Destination "+RNS.prettyhexrep(packet.destination_hash)+" is now "+str(announce_hops)+" hops away via "+RNS.prettyhexrep(received_from)+" on "+str(packet.receiving_interface), RNS.LOG_DEBUG)