From b23c9039d87771793902f119d1574c12fcfc11a7 Mon Sep 17 00:00:00 2001 From: Shawn Tabrizi Date: Wed, 7 Apr 2021 16:41:45 +0200 Subject: [PATCH] Reduce Epoch Duration to 10 Min for Rococo (#2839) --- polkadot/runtime/rococo/src/constants.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polkadot/runtime/rococo/src/constants.rs b/polkadot/runtime/rococo/src/constants.rs index 2422328ad9..0bbde45ef0 100644 --- a/polkadot/runtime/rococo/src/constants.rs +++ b/polkadot/runtime/rococo/src/constants.rs @@ -34,7 +34,7 @@ pub mod time { pub const MILLISECS_PER_BLOCK: Moment = 6000; pub const SLOT_DURATION: Moment = MILLISECS_PER_BLOCK; frame_support::parameter_types! { - pub storage EpochDurationInBlocks: BlockNumber = 30 * MINUTES; + pub storage EpochDurationInBlocks: BlockNumber = 10 * MINUTES; } // These time units are defined in number of blocks.