git.delta.rocks / unique-network / refs/commits / 7ac8b963c782

difftreelog

fix rename IdentityFeeUpdate -> ConstFeeMultiplier

Daniel Shiposha2022-09-09parent: #a49d3c7.patch.diff
in: master

1 file changed

modifiedruntime/common/config/substrate.rsdiffbeforeafterboth
162 pub MinimumMultiplier: Multiplier = Multiplier::one();162 pub MinimumMultiplier: Multiplier = Multiplier::one();
163}163}
164164
165pub type IdentityFeeUpdate<R> =165pub type ConstFeeMultiplier<R> =
166 TargetedFeeAdjustment<R, TargetBlockFullness, AdjustmentVariable, MinimumMultiplier>;166 TargetedFeeAdjustment<R, TargetBlockFullness, AdjustmentVariable, MinimumMultiplier>;
167167
168impl pallet_transaction_payment::Config for Runtime {168impl pallet_transaction_payment::Config for Runtime {
171 type LengthToFee = ConstantMultiplier<Balance, TransactionByteFee>;171 type LengthToFee = ConstantMultiplier<Balance, TransactionByteFee>;
172 type OperationalFeeMultiplier = OperationalFeeMultiplier;172 type OperationalFeeMultiplier = OperationalFeeMultiplier;
173 type WeightToFee = pallet_configuration::WeightToFee<Self, Balance>;173 type WeightToFee = pallet_configuration::WeightToFee<Self, Balance>;
174 type FeeMultiplierUpdate = IdentityFeeUpdate<Self>;174 type FeeMultiplierUpdate = ConstFeeMultiplier<Self>;
175}175}
176176
177parameter_types! {177parameter_types! {