Skip to content

Commit

Permalink
cmd/utils: disable caching preimages by default
Browse files Browse the repository at this point in the history
  • Loading branch information
karalabe committed Feb 19, 2021
1 parent c027507 commit ca76db6
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 ca76db6

Please sign in to comment.