diff --git a/runtime/common/src/precompile/liquid_crowdloan.rs b/runtime/common/src/precompile/liquid_crowdloan.rs index 24d1982c3d..de905dd739 100644 --- a/runtime/common/src/precompile/liquid_crowdloan.rs +++ b/runtime/common/src/precompile/liquid_crowdloan.rs @@ -124,14 +124,11 @@ where let read_account = InputPricer::::read_accounts(1); let weight = ::WeightInfo::redeem(); - Self::BASE_COST - .saturating_add(read_account) - .saturating_add(WeightToGas::convert(weight)) + read_account.saturating_add(WeightToGas::convert(weight)) } Action::GetRedeemCurrency => { let weight = ::DbWeight::get().reads(1); - - Self::BASE_COST.saturating_add(WeightToGas::convert(weight)) + WeightToGas::convert(weight) } }; Ok(Self::BASE_COST.saturating_add(cost))