From e5d9da666abec61418d48b7a1ea0cae281aa57a7 Mon Sep 17 00:00:00 2001 From: Michael Sproul Date: Wed, 3 Dec 2025 16:23:09 +1100 Subject: [PATCH] Try frequent pruning of slashing protection data --- validator_client/lighthouse_validator_store/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/validator_client/lighthouse_validator_store/src/lib.rs b/validator_client/lighthouse_validator_store/src/lib.rs index dc8fb07b65f..9e836eb59d3 100644 --- a/validator_client/lighthouse_validator_store/src/lib.rs +++ b/validator_client/lighthouse_validator_store/src/lib.rs @@ -51,7 +51,7 @@ pub struct Config { /// Number of epochs of slashing protection history to keep. /// /// This acts as a maximum safe-guard against clock drift. -const SLASHING_PROTECTION_HISTORY_EPOCHS: u64 = 512; +const SLASHING_PROTECTION_HISTORY_EPOCHS: u64 = 1; /// Currently used as the default gas limit in execution clients. ///