mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-26 23:57:23 +00:00
Merge pull request #22350 from karalabe/disable-preimage-collection
cmd/utils: disable caching preimages by default
This commit is contained in:
commit
cdb6a84339
1 changed files with 2 additions and 2 deletions
|
|
@ -401,9 +401,9 @@ var (
|
|||
Name: "cache.noprefetch",
|
||||
Usage: "Disable heuristic state prefetch during block import (less CPU and disk IO, more time waiting for data)",
|
||||
}
|
||||
CachePreimagesFlag = cli.BoolTFlag{
|
||||
CachePreimagesFlag = cli.BoolFlag{
|
||||
Name: "cache.preimages",
|
||||
Usage: "Enable recording the SHA3/keccak preimages of trie keys (default: true)",
|
||||
Usage: "Enable recording the SHA3/keccak preimages of trie keys",
|
||||
}
|
||||
// Miner settings
|
||||
MiningEnabledFlag = cli.BoolFlag{
|
||||
|
|
|
|||
Loading…
Reference in a new issue