core/filtermaps: reset startedTailIndex flag after tail rendering

This commit is contained in:
Lessa 2026-03-20 02:12:24 -04:00 committed by GitHub
parent 59ce2cb6a1
commit b18e383644
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -349,8 +349,8 @@ func (f *FilterMaps) tryIndexTail() (bool, error) {
"firstblock", f.indexedRange.blocks.First(), "lastblock", f.indexedRange.blocks.Last(),
"processed", f.ptrTailIndex-f.indexedRange.blocks.First(),
"elapsed", common.PrettyDuration(time.Since(f.startedTailIndexAt)))
f.loggedTailIndex = false
}
f.loggedTailIndex, f.startedTailIndex = false, false
return true, nil
}