mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-03-11 21:59:05 +00:00
Merge pull request #22177 from karalabe/snapshot-storage-logs
core/state/snapshot: add generation logs to storage too
This commit is contained in:
commit
3944976a9a
1 changed files with 4 additions and 0 deletions
|
|
@ -281,6 +281,10 @@ func (dl *diskLayer) generate(stats *generatorStats) {
|
|||
abort <- stats
|
||||
return
|
||||
}
|
||||
if time.Since(logged) > 8*time.Second {
|
||||
stats.Log("Generating state snapshot", dl.root, append(accountHash[:], storeIt.Key...))
|
||||
logged = time.Now()
|
||||
}
|
||||
}
|
||||
}
|
||||
if err := storeIt.Err; err != nil {
|
||||
|
|
|
|||
Loading…
Reference in a new issue