Skip to content
Snippets Groups Projects
Commit 9fc6015a authored by Ayush Mishra's avatar Ayush Mishra Committed by GitHub
Browse files

Added Key in subcommand (#651)

* Added Key in subcommand

* Update command.rs

Co-authored-by: Ayush <>
parent 3b1446d7
Branches
No related merge requests found
......@@ -54,6 +54,9 @@ pub enum Subcommand {
/// The custom benchmark subcommmand benchmarking runtime pallets.
#[structopt(name = "benchmark", about = "Benchmark runtime pallets.")]
Benchmark(frame_benchmarking_cli::BenchmarkCmd),
/// Key management CLI utilities
Key(sc_cli::KeySubcommand),
}
/// Command for exporting the genesis state of the parachain
......
......@@ -399,6 +399,7 @@ pub fn run() -> Result<()> {
You can enable it with `--features runtime-benchmarks`."
.into())
},
Some(Subcommand::Key(cmd)) => Ok(cmd.run(&cli)?),
None => {
let runner = cli.create_runner(&cli.run.normalize())?;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment