git.delta.rocks / unique-network / refs/commits / 18d8c65aec34

difftreelog

cargo fmt

Daniel Shiposha2022-08-10parent: #12727ca.patch.diff
in: master

2 files changed

modifiedruntime/common/dispatch.rsdiffbeforeafterboth
--- a/runtime/common/dispatch.rs
+++ b/runtime/common/dispatch.rs
@@ -72,7 +72,7 @@
 			CollectionMode::ReFungible => <PalletRefungible<T>>::init_collection(sender, data)?,
 
 			#[cfg(not(feature = "refungible"))]
-			CollectionMode::ReFungible => return unsupported!(T)
+			CollectionMode::ReFungible => return unsupported!(T),
 		};
 		Ok(id)
 	}
modifiedruntime/common/mod.rsdiffbeforeafterboth
47macro_rules! unsupported {47macro_rules! unsupported {
48 () => {48 () => {
49 pallet_common::unsupported!($crate::Runtime)49 pallet_common::unsupported!($crate::Runtime)
50 }50 };
51}51}
5252
53/// The address format for describing accounts.53/// The address format for describing accounts.