good morning!!!!

Skip to content
Snippets Groups Projects
Unverified Commit 498458b4 authored by Martin Holst Swende's avatar Martin Holst Swende Committed by GitHub
Browse files

core/state: fix eta calculation on pruning (#22386)

parent 3822b099
No related branches found
No related tags found
No related merge requests found
......@@ -155,7 +155,7 @@ func prune(maindb ethdb.Database, stateBloom *stateBloom, middleStateRoots map[c
if done := binary.BigEndian.Uint64(key[:8]); done > 0 {
var (
left = math.MaxUint64 - binary.BigEndian.Uint64(key[:8])
speed = done/uint64(time.Since(start)/time.Millisecond+1) + 1 // +1s to avoid division by zero
speed = done/uint64(time.Since(pstart)/time.Millisecond+1) + 1 // +1s to avoid division by zero
)
eta = time.Duration(left/speed) * time.Millisecond
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment