Merge pull request #14727 from holiman/count_txs_right

Fix error when reporting numer of txs in imported blocks
pull/14729/head
Péter Szilágyi 7 years ago committed by GitHub
commit 65b96dc4b9
  1. 2
      core/blockchain.go

@ -1073,7 +1073,7 @@ func (st *insertStats) report(chain []*types.Block, index int) {
} }
log.Info("Imported new chain segment", context...) log.Info("Imported new chain segment", context...)
*st = insertStats{startTime: now, lastIndex: index} *st = insertStats{startTime: now, lastIndex: index + 1}
} }
} }

Loading…
Cancel
Save