mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-03-02 01:23:45 +00:00
[release/1.4.18] core: fixed import reporter
(cherry picked from commit ca419f3cd8)
This commit is contained in:
parent
0718ebbbce
commit
9fa42b1e02
1 changed files with 1 additions and 1 deletions
|
|
@ -997,7 +997,7 @@ func (st *insertStats) report(chain []*types.Block, index int) {
|
|||
duration := now.Sub(st.startTime)
|
||||
if duration > statsReportTimeLimit || st.queued > limit || st.processed > limit || st.ignored > limit {
|
||||
start, end := chain[st.lastIndex], chain[index]
|
||||
txcount := countTransactions(chain[st.lastIndex:index])
|
||||
txcount := countTransactions(chain[st.lastIndex : index+1])
|
||||
glog.Infof("imported %d block(s) (%d queued %d ignored) including %d txs in %v. #%v [%x / %x]\n", st.processed, st.queued, st.ignored, txcount, duration, end.Number(), start.Hash().Bytes()[:4], end.Hash().Bytes()[:4])
|
||||
*st = insertStats{startTime: now, lastIndex: index}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue