public address detection work

This commit is contained in:
John Smith
2022-08-26 22:52:08 -04:00
parent 75094bb6be
commit 32d3388bd9
14 changed files with 242 additions and 110 deletions
+5 -3
View File
@@ -533,9 +533,11 @@ impl RoutingTable {
}
// register the node if it's new
if let Some(nr) =
self.register_node_with_signed_node_info(p.node_id.key, p.signed_node_info.clone())
{
if let Some(nr) = self.register_node_with_signed_node_info(
p.node_id.key,
p.signed_node_info.clone(),
false,
) {
out.push(nr);
}
}