aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2019-02-07 22:03:43 +0800
committerGitHub <noreply@github.com>2019-02-07 22:03:43 +0800
commit9fa4c3ce94aa803c5a61834d1896ceb52e4e2c60 (patch)
tree9b5ced0f671ca2136b4708d0ea1806bed8b84bf1 /cmd
parentd212535ddd5bf63a0c0b194525246480ae46c537 (diff)
parentd6225ab846d1abeeb9ba9e9aad84bc566ddf52f2 (diff)
downloadgo-tangerine-9fa4c3ce94aa803c5a61834d1896ceb52e4e2c60.tar
go-tangerine-9fa4c3ce94aa803c5a61834d1896ceb52e4e2c60.tar.gz
go-tangerine-9fa4c3ce94aa803c5a61834d1896ceb52e4e2c60.tar.bz2
go-tangerine-9fa4c3ce94aa803c5a61834d1896ceb52e4e2c60.tar.lz
go-tangerine-9fa4c3ce94aa803c5a61834d1896ceb52e4e2c60.tar.xz
go-tangerine-9fa4c3ce94aa803c5a61834d1896ceb52e4e2c60.tar.zst
go-tangerine-9fa4c3ce94aa803c5a61834d1896ceb52e4e2c60.zip
Merge pull request #18991 from karalabe/archive-write-cache
cmd/utils, eth: relinquish GC cache to read cache in archive mode
Diffstat (limited to 'cmd')
-rw-r--r--cmd/utils/flags.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go
index bf20abe81..66f533102 100644
--- a/cmd/utils/flags.go
+++ b/cmd/utils/flags.go
@@ -332,12 +332,12 @@ var (
}
CacheTrieFlag = cli.IntFlag{
Name: "cache.trie",
- Usage: "Percentage of cache memory allowance to use for trie caching",
+ Usage: "Percentage of cache memory allowance to use for trie caching (default = 25% full mode, 50% archive mode)",
Value: 25,
}
CacheGCFlag = cli.IntFlag{
Name: "cache.gc",
- Usage: "Percentage of cache memory allowance to use for trie pruning",
+ Usage: "Percentage of cache memory allowance to use for trie pruning (default = 25% full mode, 0% archive mode)",
Value: 25,
}
TrieCacheGenFlag = cli.IntFlag{