From 35131d2054fd106be1af403bcad7fdf415121f55 Mon Sep 17 00:00:00 2001 From: Greg Zaitsev Date: Tue, 17 Mar 2026 11:12:56 -0400 Subject: [PATCH 1/2] 10x fees on testnet --- pallets/transaction-fee/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pallets/transaction-fee/src/lib.rs b/pallets/transaction-fee/src/lib.rs index 53e6cb816b..c18599e0d5 100644 --- a/pallets/transaction-fee/src/lib.rs +++ b/pallets/transaction-fee/src/lib.rs @@ -47,7 +47,7 @@ impl WeightToFeePolynomial for LinearWeightToFee { fn polynomial() -> WeightToFeeCoefficients { let coefficient: WeightToFeeCoefficient = WeightToFeeCoefficient { coeff_integer: TaoBalance::new(0), - coeff_frac: Perbill::from_parts(50_000), + coeff_frac: Perbill::from_parts(500_000), negative: false, degree: 1, }; From 0cd1f46f8cf03bd9f186ee740916125a74d7179d Mon Sep 17 00:00:00 2001 From: Greg Zaitsev Date: Tue, 17 Mar 2026 12:09:19 -0400 Subject: [PATCH 2/2] Spec bump --- runtime/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 5e3436a78c..4bbb6a88c8 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -268,7 +268,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { // `spec_version`, and `authoring_version` are the same between Wasm and native. // This value is set to 100 to notify Polkadot-JS App (https://polkadot.js.org/apps) to use // the compatible custom types. - spec_version: 390, + spec_version: 391, impl_version: 1, apis: RUNTIME_API_VERSIONS, transaction_version: 1,