From ec422d08b96a6ef056b350b6edee110849994a43 Mon Sep 17 00:00:00 2001 From: magecnion Date: Mon, 23 Sep 2024 12:47:08 +0100 Subject: [PATCH] Set `UNINCLUDED_SEGMENT_CAPACITY` to 3 (#789) * increase UNINCLUDED_SEGMENT_CAPACITY to 3 * bump runtime version * bump version Cargo.toml * bump version Cargo.lock --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- e2e-tests/tests/config.ts | 2 +- runtime/laos/src/configs/cumulus_parachain_system.rs | 2 +- runtime/laos/src/lib.rs | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 88eac731a..8581ce8b9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5146,7 +5146,7 @@ dependencies = [ [[package]] name = "laos" -version = "0.21.92" +version = "0.21.93" dependencies = [ "clap", "cumulus-client-cli", @@ -5229,7 +5229,7 @@ dependencies = [ [[package]] name = "laos-runtime" -version = "0.21.92" +version = "0.21.93" dependencies = [ "cumulus-pallet-aura-ext", "cumulus-pallet-parachain-system", diff --git a/Cargo.toml b/Cargo.toml index e796b0e5b..160ed4cb0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ description = "The LAOS parachain node." repository = "https://github.com/freeverseio/laos.git" homepage = "https://www.laosfoundation.io" authors = ["Freeverse"] -version = "0.21.92" +version = "0.21.93" [workspace] resolver = "2" diff --git a/e2e-tests/tests/config.ts b/e2e-tests/tests/config.ts index cd16d2d4b..497792f6a 100644 --- a/e2e-tests/tests/config.ts +++ b/e2e-tests/tests/config.ts @@ -8,7 +8,7 @@ import ParachainStaking from "../build/contracts/ParachainStaking.json"; // Node config export const RUNTIME_SPEC_NAME = "laos"; -export const RUNTIME_SPEC_VERSION = 2192; +export const RUNTIME_SPEC_VERSION = 2193; export const RUNTIME_IMPL_VERSION = 0; export const LOCAL_NODE_URL = "http://127.0.0.1:9999"; diff --git a/runtime/laos/src/configs/cumulus_parachain_system.rs b/runtime/laos/src/configs/cumulus_parachain_system.rs index e2ad2dcc1..33b13fb2d 100644 --- a/runtime/laos/src/configs/cumulus_parachain_system.rs +++ b/runtime/laos/src/configs/cumulus_parachain_system.rs @@ -46,7 +46,7 @@ impl cumulus_pallet_parachain_system::Config for Runtime { /// Maximum number of blocks simultaneously accepted by the Runtime, not yet included /// into the relay chain. -const UNINCLUDED_SEGMENT_CAPACITY: u32 = 1; +const UNINCLUDED_SEGMENT_CAPACITY: u32 = 3; /// How many parachain blocks are processed by the relay chain per parent. Limits the /// number of blocks authored per slot. const BLOCK_PROCESSING_VELOCITY: u32 = 1; diff --git a/runtime/laos/src/lib.rs b/runtime/laos/src/lib.rs index 7dfbffc8c..b758a950f 100644 --- a/runtime/laos/src/lib.rs +++ b/runtime/laos/src/lib.rs @@ -83,7 +83,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("laos"), impl_name: create_runtime_str!("laos"), authoring_version: 1, - spec_version: 2192, + spec_version: 2193, impl_version: 0, apis: apis::RUNTIME_API_VERSIONS, transaction_version: 1,