Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcin-Radecki committed May 14, 2024
1 parent 77db88e commit 37c2c08
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions bin/chain-bootstrapper/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
mod chain_spec;

use sc_chain_spec::ChainSpec;
use sc_cli::clap::{self, Parser, Subcommand as ClapSubcommand};
use sc_cli::SubstrateCli;
use sc_cli::{
clap::{self, Parser, Subcommand as ClapSubcommand},
SubstrateCli,
};

use crate::chain_spec::{BootstrapChainCmd, ConvertChainspecToRawCmd};

Expand Down Expand Up @@ -64,7 +66,6 @@ fn main() -> sc_cli::Result<()> {
Some(Subcommand::ConvertChainspecToRaw(cmd)) => cmd.run(),
Some(Subcommand::Key(cmd)) => cmd.run(&cli),


None => Err("Command was required!".into()),
}
}

0 comments on commit 37c2c08

Please sign in to comment.