aboutsummaryrefslogtreecommitdiff
path: root/p2p/src/routing_table/entry.rs
diff options
context:
space:
mode:
Diffstat (limited to 'p2p/src/routing_table/entry.rs')
-rw-r--r--p2p/src/routing_table/entry.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/p2p/src/routing_table/entry.rs b/p2p/src/routing_table/entry.rs
index b3f219f..c5fa65d 100644
--- a/p2p/src/routing_table/entry.rs
+++ b/p2p/src/routing_table/entry.rs
@@ -20,7 +20,7 @@ pub struct Entry {
impl PartialEq for Entry {
fn eq(&self, other: &Self) -> bool {
- // XXX this should also compare both addresses (the self.addr == other.addr)
+ // TODO: this should also compare both addresses (the self.addr == other.addr)
self.key == other.key
}
}