From 7ac8b963c782ca5ddac80e06299f896ceffd9eed Mon Sep 17 00:00:00 2001 From: Daniel Shiposha Date: Fri, 09 Sep 2022 10:49:20 +0000 Subject: [PATCH] fix: rename IdentityFeeUpdate -> ConstFeeMultiplier --- --- a/runtime/common/config/substrate.rs +++ b/runtime/common/config/substrate.rs @@ -162,7 +162,7 @@ pub MinimumMultiplier: Multiplier = Multiplier::one(); } -pub type IdentityFeeUpdate = +pub type ConstFeeMultiplier = TargetedFeeAdjustment; impl pallet_transaction_payment::Config for Runtime { @@ -171,7 +171,7 @@ type LengthToFee = ConstantMultiplier; type OperationalFeeMultiplier = OperationalFeeMultiplier; type WeightToFee = pallet_configuration::WeightToFee; - type FeeMultiplierUpdate = IdentityFeeUpdate; + type FeeMultiplierUpdate = ConstFeeMultiplier; } parameter_types! { -- gitstuff