fix: correct prune mode assignments in HistoryIndexingStages (#17575)

This commit is contained in:
Tomass
2025-07-23 16:03:18 +03:00
committed by GitHub
parent ff76f66cd7
commit c986441d87

View File

@@ -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,
))
}
}