mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-28 23:56:43 +00:00
Enable parallel evm by default
This commit is contained in:
parent
eeb08055bd
commit
c7f2701023
2 changed files with 2 additions and 2 deletions
|
|
@ -172,7 +172,7 @@ syncmode = "full"
|
|||
# gaslimit = 11500000
|
||||
|
||||
# [parallelevm]
|
||||
# enable = false
|
||||
# enable = true
|
||||
# procs = 8
|
||||
|
||||
# [pprof]
|
||||
|
|
|
|||
|
|
@ -757,7 +757,7 @@ func DefaultConfig() *Config {
|
|||
// CPUProfile: "",
|
||||
},
|
||||
ParallelEVM: &ParallelEVMConfig{
|
||||
Enable: false,
|
||||
Enable: true,
|
||||
SpeculativeProcesses: 8,
|
||||
},
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue