From 784a0943631825ba7ea94d20f3517200fc613063 Mon Sep 17 00:00:00 2001 From: Grigoriy Simonov Date: Fri, 01 Jul 2022 12:01:33 +0000 Subject: [PATCH] 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