mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-03-06 03:15:03 +00:00
Merge pull request #14727 from holiman/count_txs_right
Fix error when reporting numer of txs in imported blocks
This commit is contained in:
commit
65b96dc4b9
1 changed files with 1 additions and 1 deletions
|
|
@ -1073,7 +1073,7 @@ func (st *insertStats) report(chain []*types.Block, index int) {
|
|||
}
|
||||
log.Info("Imported new chain segment", context...)
|
||||
|
||||
*st = insertStats{startTime: now, lastIndex: index}
|
||||
*st = insertStats{startTime: now, lastIndex: index + 1}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue