mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-23 13:16:42 +00:00
core: add storage hash
This commit is contained in:
parent
f4735fd15a
commit
c6b2a6c05d
1 changed files with 4 additions and 2 deletions
|
|
@ -114,7 +114,8 @@ EVM execution: %v
|
||||||
Validation: %v
|
Validation: %v
|
||||||
Account read: %v(%d)
|
Account read: %v(%d)
|
||||||
Storage read: %v(%d)
|
Storage read: %v(%d)
|
||||||
State hash: %v
|
Account hash: %v
|
||||||
|
Storage hash: %v
|
||||||
DB commit: %v
|
DB commit: %v
|
||||||
Block write: %v
|
Block write: %v
|
||||||
Total: %v
|
Total: %v
|
||||||
|
|
@ -125,7 +126,8 @@ Total: %v
|
||||||
common.PrettyDuration(s.Execution), common.PrettyDuration(s.Validation+s.CrossValidation),
|
common.PrettyDuration(s.Execution), common.PrettyDuration(s.Validation+s.CrossValidation),
|
||||||
common.PrettyDuration(s.AccountReads), s.AccountLoaded,
|
common.PrettyDuration(s.AccountReads), s.AccountLoaded,
|
||||||
common.PrettyDuration(s.StorageReads), s.StorageLoaded,
|
common.PrettyDuration(s.StorageReads), s.StorageLoaded,
|
||||||
common.PrettyDuration(s.AccountHashes+s.AccountCommits+s.AccountUpdates+s.StorageCommits+s.StorageUpdates),
|
common.PrettyDuration(s.AccountHashes+s.AccountCommits+s.AccountUpdates),
|
||||||
|
common.PrettyDuration(s.StorageCommits+s.StorageUpdates),
|
||||||
common.PrettyDuration(s.TrieDBCommit+s.SnapshotCommit), common.PrettyDuration(s.BlockWrite),
|
common.PrettyDuration(s.TrieDBCommit+s.SnapshotCommit), common.PrettyDuration(s.BlockWrite),
|
||||||
common.PrettyDuration(s.TotalTime), s.StateReadCacheStats)
|
common.PrettyDuration(s.TotalTime), s.StateReadCacheStats)
|
||||||
for _, line := range strings.Split(msg, "\n") {
|
for _, line := range strings.Split(msg, "\n") {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue