diff --git a/crates/dht/src/routing_table.rs b/crates/dht/src/routing_table.rs index 05e0957..e5f09cd 100644 --- a/crates/dht/src/routing_table.rs +++ b/crates/dht/src/routing_table.rs @@ -408,6 +408,7 @@ mod tests { for i in 0..u16::MAX { let other_id = random_id_20(); let addr = std::net::SocketAddr::V4(SocketAddrV4::new("0.0.0.0".parse().unwrap(), i)); + rtable.add_node(other_id, addr); } dbg!(rtable); }