Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion execution_chain/conf.nim
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ type

parallelStateRootComputation* {.
hidden
defaultValue: false
defaultValue: true
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@advaita-saha How has your node been going with this enabled so far? Do you think we should make this enabled by default?

desc: "Compute state root in parallel using multiple threads"
name: "debug-parallel-state-root".}: bool

Expand Down
4 changes: 2 additions & 2 deletions tests/test_configuration.nim
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Loading