From aad317d9986070ca5cc64c0ce9bc0ea81c748504 Mon Sep 17 00:00:00 2001 From: Michael Sutton Date: Mon, 15 Jul 2024 09:31:19 +0000 Subject: [PATCH] chain depth of 100 is sufficient --- consensus/core/src/config/constants.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/consensus/core/src/config/constants.rs b/consensus/core/src/config/constants.rs index bab5f8a32..0c021c99d 100644 --- a/consensus/core/src/config/constants.rs +++ b/consensus/core/src/config/constants.rs @@ -113,7 +113,7 @@ pub mod perf { use crate::config::params::Params; /// The default target depth for reachability reindexes. - pub const DEFAULT_REINDEX_DEPTH: u64 = 1000; + pub const DEFAULT_REINDEX_DEPTH: u64 = 100; /// The default slack interval used by the reachability /// algorithm to encounter for blocks out of the selected chain.