Remove useless trait bound and move instructions (#11193)

* Remove useless trait bound and `move` instructions

* cargo fmt
This commit is contained in:
Davide Galassi
2022-04-09 14:08:46 +02:00
committed by GitHub
parent f4336fafb7
commit 9090f0d2a2
3 changed files with 3 additions and 6 deletions
+1 -1
View File
@@ -175,7 +175,7 @@ pub fn run() -> Result<()> {
let runner = cli.create_runner(cmd)?;
runner.async_run(|config| {
let PartialComponents { client, task_manager, backend, .. } = new_partial(&config)?;
let aux_revert = Box::new(move |client: Arc<FullClient>, backend, blocks| {
let aux_revert = Box::new(|client: Arc<FullClient>, backend, blocks| {
sc_consensus_babe::revert(client.clone(), backend, blocks)?;
grandpa::revert(client, blocks)?;
Ok(())