test(engine): enable parallel sparse trie in e2e tests (#17423)

This commit is contained in:
Alexey Shekhirin
2025-07-15 16:15:06 +01:00
committed by GitHub
parent 4364cd09bc
commit cd737052c3

View File

@@ -33,7 +33,10 @@ fn default_engine_tree_setup() -> Setup<EthEngineTypes> {
))
.with_network(NetworkSetup::single_node())
.with_tree_config(
TreeConfig::default().with_legacy_state_root(false).with_has_enough_parallelism(true),
TreeConfig::default()
.with_legacy_state_root(false)
.with_has_enough_parallelism(true)
.with_enable_parallel_sparse_trie(true),
)
}