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
72 CollectionMode::ReFungible => <PalletRefungible<T>>::init_collection(sender, data)?,72 CollectionMode::ReFungible => <PalletRefungible<T>>::init_collection(sender, data)?,
7373
74 #[cfg(not(feature = "refungible"))]74 #[cfg(not(feature = "refungible"))]
75 CollectionMode::ReFungible => return unsupported!(T)75 CollectionMode::ReFungible => return unsupported!(T),
76 };76 };
77 Ok(id)77 Ok(id)
78 }78 }
modifiedruntime/common/mod.rsdiffbeforeafterboth
--- 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.