From 4b6908841b9a49ec9c29d1b3f4360735f1aa6b1f Mon Sep 17 00:00:00 2001 From: Justin Date: Mon, 12 Sep 2022 16:06:07 +1200 Subject: [PATCH] bump up pioneer version and tx fees --- runtime/pioneer/src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/runtime/pioneer/src/lib.rs b/runtime/pioneer/src/lib.rs index 69837f51d..79e590960 100644 --- a/runtime/pioneer/src/lib.rs +++ b/runtime/pioneer/src/lib.rs @@ -222,7 +222,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("pioneer-runtime"), impl_name: create_runtime_str!("pioneer-runtime"), authoring_version: 1, - spec_version: 8, + spec_version: 10, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 1, @@ -284,7 +284,7 @@ impl Contains for NormalCallFilter { // Not allow stopped tx return false; } - false + true } } @@ -460,7 +460,7 @@ impl OnUnbalanced for DealWithFees { parameter_types! { /// Relay Chain `TransactionByteFee` / 10 - pub const TransactionByteFee: Balance = 10 * MILLICENTS; + pub const TransactionByteFee: Balance = 100 * MILLICENTS; pub const OperationalFeeMultiplier: u8 = 5; }