We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb07809 commit 860915aCopy full SHA for 860915a
sim-cli/src/parsing.rs
@@ -243,8 +243,13 @@ pub async fn create_simulation_with_network(
243
244
// Setup a simulation graph that will handle propagation of payments through the network
245
let simulation_graph = Arc::new(Mutex::new(
246
- SimGraph::new(channels.clone(), tasks.clone(), shutdown_trigger.clone())
247
- .map_err(|e| SimulationError::SimulatedNetworkError(format!("{:?}", e)))?,
+ SimGraph::new(
+ channels.clone(),
248
+ tasks.clone(),
249
+ vec![],
250
+ shutdown_trigger.clone(),
251
+ )
252
+ .map_err(|e| SimulationError::SimulatedNetworkError(format!("{:?}", e)))?,
253
));
254
255
let clock = Arc::new(SimulationClock::new(cli.speedup_clock.unwrap_or(1))?);
0 commit comments