difftreelog
fix rename IdentityFeeUpdate -> ConstFeeMultiplier
in: master
1 file changed
runtime/common/config/substrate.rsdiffbeforeafterboth162 pub MinimumMultiplier: Multiplier = Multiplier::one();162 pub MinimumMultiplier: Multiplier = Multiplier::one();163}163}164164165pub type IdentityFeeUpdate<R> =165pub type ConstFeeMultiplier<R> =166 TargetedFeeAdjustment<R, TargetBlockFullness, AdjustmentVariable, MinimumMultiplier>;166 TargetedFeeAdjustment<R, TargetBlockFullness, AdjustmentVariable, MinimumMultiplier>;167167168impl 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}176176177parameter_types! {177parameter_types! {