From cde697e857116e886ba60672df56fbc6137c9dd9 Mon Sep 17 00:00:00 2001 From: kozyrevdev <73348153+kozyrevdev@users.noreply.github.com> Date: Fri, 01 Jul 2022 12:07:38 +0000 Subject: [PATCH] Merge pull request #416 from UniqueNetwork/fix/unique-runtime-not-building-due-to-refungible-weight-info Fixed the issue with RefungibleExtensionsWeightInfo trait --- --- a/runtime/quartz/src/lib.rs +++ b/runtime/quartz/src/lib.rs @@ -924,6 +924,7 @@ type Event = Event; type WeightInfo = pallet_unique::weights::SubstrateWeight; type CommonWeightInfo = CommonWeights; + type RefungibleExtensionsWeightInfo = CommonWeights; } parameter_types! { --- a/runtime/unique/src/lib.rs +++ b/runtime/unique/src/lib.rs @@ -913,6 +913,7 @@ type Event = Event; type WeightInfo = pallet_unique::weights::SubstrateWeight; type CommonWeightInfo = CommonWeights; + type RefungibleExtensionsWeightInfo = CommonWeights; } parameter_types! { -- gitstuff