From 061bbd839dd986b59f62174238b484b198a81b1e Mon Sep 17 00:00:00 2001 From: Daniel Shiposha Date: Mon, 01 Aug 2022 13:53:29 +0000 Subject: [PATCH] fix: use rft feature in dispatch --- --- a/runtime/common/src/dispatch.rs +++ b/runtime/common/src/dispatch.rs @@ -64,9 +64,10 @@ ); >::init_collection(sender, data)? } - #[cfg(all(not(feature = "unique-runtime"), not(feature = "quartz-runtime")))] + #[cfg(feature = "refungible")] CollectionMode::ReFungible => >::init_collection(sender, data)?, + #[cfg(not(feature = "refungible"))] CollectionMode::ReFungible => { return Err(DispatchError::Other("Refunginle pallet is not supported")) } -- gitstuff