This commit is contained in:
John Smith
2022-07-05 21:21:58 -04:00
parent 36f95692f6
commit 895fbf77c5
4 changed files with 27 additions and 16 deletions

View File

@@ -519,7 +519,7 @@ impl Network {
self.inner.lock().network_started = true;
// Inform routing table entries that our dial info has changed
self.routing_table().send_node_info_updates().await;
self.routing_table().send_node_info_updates(true).await;
Ok(())
}

View File

@@ -644,7 +644,7 @@ impl Network {
log_net!(debug "network class changed to {:?}", network_class);
// Send updates to everyone
routing_table.send_node_info_updates().await;
routing_table.send_node_info_updates(true).await;
}
Ok(())