From 25abdf3e7909412a4c482b51dcafbb0911250ef0 Mon Sep 17 00:00:00 2001 From: Keith Date: Mon, 27 May 2024 22:34:13 +0800 Subject: [PATCH] Use 6 blocks as the unfinalized slack --- node/src/service.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/src/service.rs b/node/src/service.rs index 934443f6a..284edb52a 100644 --- a/node/src/service.rs +++ b/node/src/service.rs @@ -242,7 +242,7 @@ pub fn new_full(config: Configuration) -> Result { let role = config.role.clone(); let force_authoring = config.force_authoring; let backoff_authoring_blocks = Some(BackoffAuthoringOnFinalizedHeadLagging { - unfinalized_slack: 15, + unfinalized_slack: 6, ..Default::default() }); let name = config.network.node_name.clone();