Skip to content

Commit

Permalink
Merge pull request #22350 from karalabe/disable-preimage-collection
Browse files Browse the repository at this point in the history
cmd/utils: disable caching preimages by default
  • Loading branch information
karalabe authored Feb 23, 2021
2 parents 4ee8d2d + ca76db6 commit cdb6a84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/utils/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -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{
Expand Down

0 comments on commit cdb6a84

Please sign in to comment.