diff --git a/client/api/src/backend.rs b/client/api/src/backend.rs index 9f5dc7c73a3f0..166e47417564d 100644 --- a/client/api/src/backend.rs +++ b/client/api/src/backend.rs @@ -172,9 +172,10 @@ pub trait BlockImportOperation { /// trait for performing operations on the backend pub trait ClientBackend> { /// Lock the import lock, and run operations inside. - fn lock_import_and_run(&self, f: F) -> Result where - F: FnOnce(&mut ClientImportOperation) -> Result, - Err: From; + fn lock_import_and_run(&self, f: F) -> Result + where + F: FnOnce(&mut ClientImportOperation) -> Result, + Err: From; } /// Finalize Facilities