From c986441d878705c105a86bce231ec283a50f682e Mon Sep 17 00:00:00 2001 From: Tomass <155266802+zeroprooff@users.noreply.github.com> Date: Wed, 23 Jul 2025 16:03:18 +0300 Subject: [PATCH] fix: correct prune mode assignments in HistoryIndexingStages (#17575) --- crates/stages/stages/src/sets.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/stages/stages/src/sets.rs b/crates/stages/stages/src/sets.rs index 512e4571c9..97c3a3116a 100644 --- a/crates/stages/stages/src/sets.rs +++ b/crates/stages/stages/src/sets.rs @@ -444,12 +444,12 @@ where .add_stage(IndexStorageHistoryStage::new( self.stages_config.index_storage_history, self.stages_config.etl.clone(), - self.prune_modes.account_history, + self.prune_modes.storage_history, )) .add_stage(IndexAccountHistoryStage::new( self.stages_config.index_account_history, self.stages_config.etl.clone(), - self.prune_modes.storage_history, + self.prune_modes.account_history, )) } }