From d682adf6637fc47e1f4e92b9a0022f8bf6e87c56 Mon Sep 17 00:00:00 2001 From: Dom Date: Fri, 10 Jan 2025 19:29:07 -0500 Subject: [PATCH] fmt --- substrate/frame/salary/src/migration.rs | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/substrate/frame/salary/src/migration.rs b/substrate/frame/salary/src/migration.rs index f60381194f18..a3d5c02cc9d0 100644 --- a/substrate/frame/salary/src/migration.rs +++ b/substrate/frame/salary/src/migration.rs @@ -18,7 +18,10 @@ //! Storage migrations for the `pallet_salary`. use super::*; -use frame::{storage_alias, traits::UncheckedOnRuntimeUpgrade, deps::frame_support::migrations::VersionedMigration}; +use frame::{ + deps::frame_support::migrations::VersionedMigration, storage_alias, + traits::UncheckedOnRuntimeUpgrade, +}; #[cfg(feature = "try-runtime")] use alloc::vec::Vec; @@ -123,8 +126,8 @@ pub mod v1 { /// |--------------------| /// /// ^ Two 6s relay blocks passed per one 12s local block. - /// ``` - /// + /// ``` + /// /// # Example Usage /// /// ```rust,ignore