Skip to content

Commit

Permalink
sim-cli/refactor: sort imports using cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
carlaKC committed Nov 20, 2024
1 parent 7b34635 commit 4d7c28d
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions sim-cli/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
use bitcoin::secp256k1::PublicKey;
use std::collections::HashMap;
use std::path::PathBuf;
use std::sync::Arc;
use tokio::sync::Mutex;

use anyhow::anyhow;
use bitcoin::secp256k1::PublicKey;
use clap::builder::TypedValueParser;
use clap::Parser;
use log::LevelFilter;
Expand All @@ -13,6 +8,10 @@ use simln_lib::{
NodeId, SimParams, Simulation, SimulationCfg, WriteResults,
};
use simple_logger::SimpleLogger;
use std::collections::HashMap;
use std::path::PathBuf;
use std::sync::Arc;
use tokio::sync::Mutex;

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

0 comments on commit 4d7c28d

Please sign in to comment.