Skip to content

Commit 4d7c28d

Browse files
committed
sim-cli/refactor: sort imports using cargo fmt
1 parent 7b34635 commit 4d7c28d

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

sim-cli/src/main.rs

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
1-
use bitcoin::secp256k1::PublicKey;
2-
use std::collections::HashMap;
3-
use std::path::PathBuf;
4-
use std::sync::Arc;
5-
use tokio::sync::Mutex;
6-
71
use anyhow::anyhow;
2+
use bitcoin::secp256k1::PublicKey;
83
use clap::builder::TypedValueParser;
94
use clap::Parser;
105
use log::LevelFilter;
@@ -13,6 +8,10 @@ use simln_lib::{
138
NodeId, SimParams, Simulation, SimulationCfg, WriteResults,
149
};
1510
use simple_logger::SimpleLogger;
11+
use std::collections::HashMap;
12+
use std::path::PathBuf;
13+
use std::sync::Arc;
14+
use tokio::sync::Mutex;
1615

1716
/// The default directory where the simulation files are stored and where the results will be written to.
1817
pub const DEFAULT_DATA_DIR: &str = ".";

0 commit comments

Comments
 (0)