From 18d8c65aec34f1356598046f14037b8f86040f00 Mon Sep 17 00:00:00 2001 From: Daniel Shiposha Date: Wed, 10 Aug 2022 10:37:18 +0000 Subject: [PATCH] cargo fmt --- --- a/runtime/common/dispatch.rs +++ b/runtime/common/dispatch.rs @@ -72,7 +72,7 @@ CollectionMode::ReFungible => >::init_collection(sender, data)?, #[cfg(not(feature = "refungible"))] - CollectionMode::ReFungible => return unsupported!(T) + CollectionMode::ReFungible => return unsupported!(T), }; Ok(id) } --- a/runtime/common/mod.rs +++ b/runtime/common/mod.rs @@ -47,7 +47,7 @@ macro_rules! unsupported { () => { pallet_common::unsupported!($crate::Runtime) - } + }; } /// The address format for describing accounts. -- gitstuff