From 7b1ee41c955d991a7733b6fe06089108a037430a Mon Sep 17 00:00:00 2001 From: Andronik Ordian Date: Fri, 29 Oct 2021 15:07:10 +0200 Subject: [PATCH] bump finality safety net depth to 500 blocks (#4178) --- polkadot/node/service/src/relay_chain_selection.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polkadot/node/service/src/relay_chain_selection.rs b/polkadot/node/service/src/relay_chain_selection.rs index 31d878218e..c195b91c78 100644 --- a/polkadot/node/service/src/relay_chain_selection.rs +++ b/polkadot/node/service/src/relay_chain_selection.rs @@ -53,7 +53,7 @@ use std::sync::Arc; /// or disputes. /// /// This is a safety net that should be removed at some point in the future. -const MAX_FINALITY_LAG: polkadot_primitives::v1::BlockNumber = 50; +const MAX_FINALITY_LAG: polkadot_primitives::v1::BlockNumber = 500; const LOG_TARGET: &str = "parachain::chain-selection";