Merge pull request #22350 from karalabe/disable-preimage-collection

cmd/utils: disable caching preimages by default
revert-23120-drop-eth-65
Péter Szilágyi 4 years ago committed by GitHub
commit cdb6a84339
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      cmd/utils/flags.go

@ -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…
Cancel
Save