From 3af2be27d874091a8541c161ada73f54172f2336 Mon Sep 17 00:00:00 2001 From: Sudo-Ivan Date: Mon, 29 Dec 2025 23:50:03 -0600 Subject: [PATCH] cleanup: remove extra comments --- pkg/transport/transport.go | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/pkg/transport/transport.go b/pkg/transport/transport.go index 87737bc..8c010c5 100644 --- a/pkg/transport/transport.go +++ b/pkg/transport/transport.go @@ -178,12 +178,7 @@ func NewTransport(cfg *common.ReticulumConfig) *Transport { heldAnnounces: make(map[string]*PathAnnounceEntry), } - // TODO: Path table persistence - Python Reticulum persists the path table to disk at - // storage/destination_table containing [timestamp, received_from, hops, expires, random_blobs, interface, packet_hash] - // for each known destination. This allows faster startup by not needing to re-discover all paths. - // However, NOT persisting provides better privacy as paths are ephemeral and forgotten on restart. - // Decision: Keep paths in-memory only for now (better privacy). If persistence is needed in the future, - // implement loadPathTable() and persistPathTable() methods with periodic saves. + // TODO: Path table persistence transportIdent, err := identity.LoadOrCreateTransportIdentity() if err == nil {