Skip to content

Commit

Permalink
Use unimplemented macro
Browse files Browse the repository at this point in the history
  • Loading branch information
MRamanenkau committed Jun 22, 2023
1 parent 66f7dd3 commit d044b59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cli/src/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -189,11 +189,11 @@ pub fn run() -> sc_cli::Result<()> {
}),
BenchmarkCmd::Overhead(_cmd) => {
print!("BenchmarkCmd::Overhead is not supported");
Ok(())
unimplemented!()
},
BenchmarkCmd::Extrinsic(_cmd) => {
print!("BenchmarkCmd::Extrinsic is not supported");
Ok(())
unimplemented!()
},
BenchmarkCmd::Machine(cmd) =>
runner.sync_run(|config| cmd.run(&config, SUBSTRATE_REFERENCE_HARDWARE.clone())),
Expand Down

0 comments on commit d044b59

Please sign in to comment.