From f7d040e813170f82d38daf4ef46974b056cecb7f Mon Sep 17 00:00:00 2001 From: Gautham Date: Wed, 20 Dec 2023 11:40:38 +0530 Subject: [PATCH] Increment spec version and decrement transaction_version as hotfix for ledger --- runtimes/mainnet/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtimes/mainnet/src/lib.rs b/runtimes/mainnet/src/lib.rs index 748118f5b..bf6c56ec4 100644 --- a/runtimes/mainnet/src/lib.rs +++ b/runtimes/mainnet/src/lib.rs @@ -122,10 +122,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { // and set impl_version to 0. If only runtime // implementation changes and behavior does not, then leave spec_version as // is and increment impl_version. - spec_version: 315, + spec_version: 316, impl_version: 0, apis: RUNTIME_API_VERSIONS, - transaction_version: 3, + transaction_version: 2, state_version: 0, };