Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix: cargo fmt
  • Loading branch information
Daniel Shiposha committed Aug 16, 2022
commit 4cfc421768bfe264c7b7ca01fe81e5fbbbb9015c
4 changes: 3 additions & 1 deletion node/cli/src/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,9 @@ pub fn run() -> Result<()> {
BenchmarkCmd::Machine(cmd) => {
runner.sync_run(|config| cmd.run(&config, SUBSTRATE_REFERENCE_HARDWARE.clone()))
}
BenchmarkCmd::Overhead(_) | BenchmarkCmd::Extrinsic(_) => Err("Unsupported benchmarking command".into()),
BenchmarkCmd::Overhead(_) | BenchmarkCmd::Extrinsic(_) => {
Err("Unsupported benchmarking command".into())
}
}
}
Some(Subcommand::TryRuntime(cmd)) => {
Expand Down