From 3eab601fb9e8e14514043f5998e3daea09db619d Mon Sep 17 00:00:00 2001 From: Robert Date: Wed, 20 Nov 2024 14:59:00 +0100 Subject: [PATCH] Always 80 blocks! --- polkadot/runtime/rococo/constants/src/lib.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/polkadot/runtime/rococo/constants/src/lib.rs b/polkadot/runtime/rococo/constants/src/lib.rs index 47b50bf6c106..799f0ea7bee3 100644 --- a/polkadot/runtime/rococo/constants/src/lib.rs +++ b/polkadot/runtime/rococo/constants/src/lib.rs @@ -127,9 +127,6 @@ pub mod system_parachain { /// Coretime timeslice period in blocks /// WARNING: This constant is used accross chains, so additional care should be taken /// when changing it. - #[cfg(feature = "fast-runtime")] - pub const TIMESLICE_PERIOD: u32 = 20; - #[cfg(not(feature = "fast-runtime"))] pub const TIMESLICE_PERIOD: u32 = 80; } }