From dd82fda0f96456dede80c6e362340940d983057e Mon Sep 17 00:00:00 2001 From: Raphael Date: Thu, 12 Jun 2025 17:53:34 +0200 Subject: [PATCH] fix: set kestrel block time to 1 second --- runtimes/kestrel/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtimes/kestrel/src/lib.rs b/runtimes/kestrel/src/lib.rs index 5e0a8709e..4b412c49c 100644 --- a/runtimes/kestrel/src/lib.rs +++ b/runtimes/kestrel/src/lib.rs @@ -220,7 +220,7 @@ impl pallet_aura::Config for Runtime { type DisabledValidators = (); type MaxAuthorities = MaxAuthorities; type AllowMultipleBlocksPerSlot = ConstBool; - type SlotDuration = ConstU64<6000>; + type SlotDuration = ConstU64<1000>; } impl pallet_grandpa::Config for Runtime {