Enable parallel evm by default

This commit is contained in:
Jerry 2023-05-16 14:15:53 -07:00
parent eeb08055bd
commit c7f2701023
No known key found for this signature in database
GPG key ID: 5B33FA23CB103211
2 changed files with 2 additions and 2 deletions

View file

@ -172,7 +172,7 @@ syncmode = "full"
# gaslimit = 11500000
# [parallelevm]
# enable = false
# enable = true
# procs = 8
# [pprof]

View file

@ -757,7 +757,7 @@ func DefaultConfig() *Config {
// CPUProfile: "",
},
ParallelEVM: &ParallelEVMConfig{
Enable: false,
Enable: true,
SpeculativeProcesses: 8,
},
}