mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-30 06:08:00 +00:00
Reflect benchmarking fn signature change (#5959)
* Reflect benchmarking fn signature change
* fmt
* update lockfile for {"substrate"}
Co-authored-by: parity-processbot <>
This commit is contained in:
@@ -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"),
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user