mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-12 15:03:45 +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
|
# gaslimit = 11500000
|
||||||
|
|
||||||
# [parallelevm]
|
# [parallelevm]
|
||||||
# enable = false
|
# enable = true
|
||||||
# procs = 8
|
# procs = 8
|
||||||
|
|
||||||
# [pprof]
|
# [pprof]
|
||||||
|
|
|
||||||
|
|
@ -757,7 +757,7 @@ func DefaultConfig() *Config {
|
||||||
// CPUProfile: "",
|
// CPUProfile: "",
|
||||||
},
|
},
|
||||||
ParallelEVM: &ParallelEVMConfig{
|
ParallelEVM: &ParallelEVMConfig{
|
||||||
Enable: false,
|
Enable: true,
|
||||||
SpeculativeProcesses: 8,
|
SpeculativeProcesses: 8,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue