git.delta.rocks / unique-network / refs/commits / cde697e85711

difftreelog

Merge pull request #416 from UniqueNetwork/fix/unique-runtime-not-building-due-to-refungible-weight-info

kozyrevdev2022-07-01parents: #66c5541 #784a094.patch.diff
in: master
Fixed the issue with RefungibleExtensionsWeightInfo trait

2 files changed

modifiedruntime/quartz/src/lib.rsdiffbeforeafterboth
--- 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<Self>;
 	type CommonWeightInfo = CommonWeights<Self>;
+	type RefungibleExtensionsWeightInfo = CommonWeights<Self>;
 }
 
 parameter_types! {
modifiedruntime/unique/src/lib.rsdiffbeforeafterboth
913 type Event = Event;913 type Event = Event;
914 type WeightInfo = pallet_unique::weights::SubstrateWeight<Self>;914 type WeightInfo = pallet_unique::weights::SubstrateWeight<Self>;
915 type CommonWeightInfo = CommonWeights<Self>;915 type CommonWeightInfo = CommonWeights<Self>;
916 type RefungibleExtensionsWeightInfo = CommonWeights<Self>;
916}917}
917918
918parameter_types! {919parameter_types! {