From ec828175d8c7801642d2f9cbb12191f81140b4ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Silva?= Date: Tue, 24 Sep 2019 16:29:47 +0100 Subject: [PATCH] grandpa: set justification period to 512 blocks (#445) --- polkadot/service/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polkadot/service/src/lib.rs b/polkadot/service/src/lib.rs index 31f8d84074..5d6524500a 100644 --- a/polkadot/service/src/lib.rs +++ b/polkadot/service/src/lib.rs @@ -283,7 +283,7 @@ pub fn new_full(config: Configuration) let config = grandpa::Config { // FIXME substrate#1578 make this available through chainspec gossip_duration: Duration::from_millis(333), - justification_period: 4096, + justification_period: 512, name: Some(name), keystore: Some(service.keystore()), };