Skip to content
Snippets Groups Projects
Commit 3bbfc46d authored by Stephen Shelton's avatar Stephen Shelton Committed by GitHub
Browse files

Reflect benchmarking fn signature change (#5959)

* Reflect benchmarking fn signature change

* fmt

* update lockfile for {"substrate"}

Co-authored-by: parity-processbot <>
parent fa75315e
Branches
No related merge requests found
This diff is collapsed.
......@@ -552,14 +552,25 @@ pub fn run() -> Result<()> {
unwrap_client!(
client,
cmd.run(client.clone(), inherent_data, &ext_factory)
.map_err(Error::SubstrateCli)
cmd.run(
client.clone(),
inherent_data,
Vec::new(),
&ext_factory
)
.map_err(Error::SubstrateCli)
)
},
BenchmarkCmd::Overhead(cmd) => unwrap_client!(
client,
cmd.run(config, client.clone(), inherent_data, &remark_builder)
.map_err(Error::SubstrateCli)
cmd.run(
config,
client.clone(),
inherent_data,
Vec::new(),
&remark_builder
)
.map_err(Error::SubstrateCli)
),
_ => unreachable!("Ensured by the outside match; qed"),
}
......
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