diff options
author | Péter Szilágyi <peterke@gmail.com> | 2016-10-19 19:55:13 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2016-10-19 19:55:13 +0800 |
commit | 4f46bd19d0b123327596785dc3975d5e4008d761 (patch) | |
tree | 669ad5ec53b1408885465c5c3affb38e99f82b5e /cmd/geth/chaincmd.go | |
parent | ca49510e6dd40e78e3e6827c6c4d7b2a3ec8ef5b (diff) | |
download | dexon-4f46bd19d0b123327596785dc3975d5e4008d761.tar dexon-4f46bd19d0b123327596785dc3975d5e4008d761.tar.gz dexon-4f46bd19d0b123327596785dc3975d5e4008d761.tar.bz2 dexon-4f46bd19d0b123327596785dc3975d5e4008d761.tar.lz dexon-4f46bd19d0b123327596785dc3975d5e4008d761.tar.xz dexon-4f46bd19d0b123327596785dc3975d5e4008d761.tar.zst dexon-4f46bd19d0b123327596785dc3975d5e4008d761.zip |
cmd, core/state: allow configurable trie cache generations
Diffstat (limited to 'cmd/geth/chaincmd.go')
-rw-r--r-- | cmd/geth/chaincmd.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/geth/chaincmd.go b/cmd/geth/chaincmd.go index d7cdf1064..c41375c4d 100644 --- a/cmd/geth/chaincmd.go +++ b/cmd/geth/chaincmd.go @@ -99,6 +99,7 @@ func importChain(ctx *cli.Context) error { utils.Fatalf("Failed to read database stats: %v", err) } fmt.Println(stats) + fmt.Printf("Trie cache misses: %d\n\n", trie.CacheMisses()) // Compact the entire database to more accurately measure disk io and print the stats start = time.Now() @@ -113,7 +114,6 @@ func importChain(ctx *cli.Context) error { utils.Fatalf("Failed to read database stats: %v", err) } fmt.Println(stats) - fmt.Println("Trie cache misses:", trie.CacheMisses()) } return nil } |