git.delta.rocks / unique-network / refs/commits / 784a09436318

difftreelog

fixed the issue with RefungibleExtensionsWeightInfo trait

Grigoriy Simonov2022-07-01parent: #66c5541.patch.diff
in: master

2 files changed

modifiedruntime/quartz/src/lib.rsdiffbeforeafterboth
924 type Event = Event;924 type Event = Event;
925 type WeightInfo = pallet_unique::weights::SubstrateWeight<Self>;925 type WeightInfo = pallet_unique::weights::SubstrateWeight<Self>;
926 type CommonWeightInfo = CommonWeights<Self>;926 type CommonWeightInfo = CommonWeights<Self>;
927 type RefungibleExtensionsWeightInfo = CommonWeights<Self>;
927}928}
928929
929parameter_types! {930parameter_types! {
modifiedruntime/unique/src/lib.rsdiffbeforeafterboth
--- 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<Self>;
 	type CommonWeightInfo = CommonWeights<Self>;
+	type RefungibleExtensionsWeightInfo = CommonWeights<Self>;
 }
 
 parameter_types! {