From 8da626bc5b340536ad8e75c6fb9ff51937c84e0a Mon Sep 17 00:00:00 2001 From: bhartnett Date: Fri, 15 May 2026 21:32:24 +0800 Subject: [PATCH 1/2] Enable parallel state root computation by default. --- execution_chain/conf.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/execution_chain/conf.nim b/execution_chain/conf.nim index 2ae6c65121..0fe9a2b3a3 100644 --- a/execution_chain/conf.nim +++ b/execution_chain/conf.nim @@ -354,7 +354,7 @@ type parallelStateRootComputation* {. hidden - defaultValue: false + defaultValue: true desc: "Compute state root in parallel using multiple threads" name: "debug-parallel-state-root".}: bool From 1d6ac09d2ca0dfda0512a74b129ef18c3f628e67 Mon Sep 17 00:00:00 2001 From: bhartnett Date: Sat, 16 May 2026 21:10:19 +0800 Subject: [PATCH 2/2] Update config test. --- tests/test_configuration.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_configuration.nim b/tests/test_configuration.nim index d946909e2d..eafbd9ea57 100644 --- a/tests/test_configuration.nim +++ b/tests/test_configuration.nim @@ -360,8 +360,8 @@ proc configurationMain*() = check config.rdbBranchCacheSize == 39 check config.rdbPrintStats == true check config.rewriteDatadirId == true - check config.eagerStateRootCheck == false - check config.parallelStateRootComputation == false + check config.eagerStateRootCheck == false + check config.parallelStateRootComputation == true check config.statelessProviderEnabled == true check config.statelessWitnessValidation == true