lock fixes

This commit is contained in:
John Smith
2022-07-06 14:11:44 -04:00
parent 48cd02c39d
commit 05bdc0e5c8
2 changed files with 33 additions and 15 deletions
+5 -1
View File
@@ -265,8 +265,12 @@ impl NetworkManager {
}
// Create network components
let net = Network::new(self.clone());
let connection_manager = ConnectionManager::new(self.clone());
let net = Network::new(
self.clone(),
self.routing_table(),
connection_manager.clone(),
);
let rpc_processor = RPCProcessor::new(self.clone());
let receipt_manager = ReceiptManager::new(self.clone());
self.inner.lock().components = Some(NetworkComponents {