diff --git a/runtime/shibuya/src/lib.rs b/runtime/shibuya/src/lib.rs index 22aa68f38..4db3d3b02 100644 --- a/runtime/shibuya/src/lib.rs +++ b/runtime/shibuya/src/lib.rs @@ -807,7 +807,12 @@ impl WeightToFeePolynomial for WeightToFee { type Balance = Balance; fn polynomial() -> WeightToFeeCoefficients { let p = WeightFeeFactor::get(); - let q = Balance::from(ExtrinsicBaseWeight::get().ref_time()); + let q = Balance::from( + RuntimeBlockWeights::get() + .get(DispatchClass::Normal) + .base_extrinsic + .ref_time(), + ); smallvec::smallvec![WeightToFeeCoefficient { degree: 1, negative: false,