From bb56851dd77916c9735d0d15bd0e1643b9f06d3a Mon Sep 17 00:00:00 2001 From: Wil Wade Date: Wed, 23 Oct 2024 14:38:16 -0400 Subject: [PATCH] Reduce the SessionPeriod for testnet and local --- runtime/common/src/constants.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/common/src/constants.rs b/runtime/common/src/constants.rs index 24bcde806f..29b299ac2e 100644 --- a/runtime/common/src/constants.rs +++ b/runtime/common/src/constants.rs @@ -245,7 +245,7 @@ pub type MaximumCapacityBatchLength = ConstU8<10>; // -end- Frequency Transaction Payment Pallet --- // --- Session Pallet --- -pub type SessionPeriod = ConstU32<{ 6 * HOURS }>; +pub type SessionPeriod = ConstU32<{ prod_or_testnet_or_local!(6 * HOURS, 30 * MINUTES, 5 * MINUTES) }> pub type SessionOffset = ZERO; // -end- Session Pallet ---