--- 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.