@@ -30,14 +30,13 @@ import (
3030// ExecuteStats includes all the statistics of a block execution in details.
3131type ExecuteStats struct {
3232 // State read times
33- AccountReads time.Duration // Time spent on the account reads
34- StorageReads time.Duration // Time spent on the storage reads
35- AccountHashes time.Duration // Time spent on the account trie hash
36- AccountUpdates time.Duration // Time spent on the account trie update
37- AccountUpdateWait time.Duration // Time spent on waiting the account trie from prefetching
38- AccountCommits time.Duration // Time spent on the account trie commit
39- StorageUpdates time.Duration // Time spent on the storage trie update
40- StorageCommits time.Duration // Time spent on the storage trie commit
33+ AccountReads time.Duration // Time spent on the account reads
34+ StorageReads time.Duration // Time spent on the storage reads
35+ AccountHashes time.Duration // Time spent on the account trie hash
36+ AccountUpdates time.Duration // Time spent on the account trie update
37+ AccountCommits time.Duration // Time spent on the account trie commit
38+ StorageUpdates time.Duration // Time spent on the storage trie update
39+ StorageCommits time.Duration // Time spent on the storage trie commit
4140
4241 AccountLoaded int // Number of accounts loaded
4342 AccountUpdated int // Number of accounts updated
@@ -115,7 +114,7 @@ EVM execution: %v
115114Validation: %v
116115Account read: %v(%d)
117116Storage read: %v(%d)
118- Account hash: %v(wait=%v)
117+ Account hash: %v
119118Storage hash: %v
120119DB commit: %v
121120Block write: %v
@@ -127,7 +126,7 @@ Total: %v
127126 common .PrettyDuration (s .Execution ), common .PrettyDuration (s .Validation + s .CrossValidation ),
128127 common .PrettyDuration (s .AccountReads ), s .AccountLoaded ,
129128 common .PrettyDuration (s .StorageReads ), s .StorageLoaded ,
130- common .PrettyDuration (s .AccountHashes + s .AccountCommits + s .AccountUpdates ), common . PrettyDuration ( s . AccountUpdateWait ),
129+ common .PrettyDuration (s .AccountHashes + s .AccountCommits + s .AccountUpdates ),
131130 common .PrettyDuration (s .StorageCommits + s .StorageUpdates ),
132131 common .PrettyDuration (s .TrieDBCommit + s .SnapshotCommit ), common .PrettyDuration (s .BlockWrite ),
133132 common .PrettyDuration (s .TotalTime ), s .StateReadCacheStats )
0 commit comments