aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorJeffrey Wilcke <geffobscura@gmail.com>2016-10-11 06:16:08 +0800
committerJeffrey Wilcke <geffobscura@gmail.com>2016-10-11 06:16:08 +0800
commitca419f3cd8df66f5dc5e8aa61bbd4cd2bfa749dc (patch)
treeaa9bfbcd0dd63f39120ff48f0b5736af72faaf9e /core
parentbe6a3696a9642c9511c565f4c35d1c8aae6434ad (diff)
downloadgo-tangerine-ca419f3cd8df66f5dc5e8aa61bbd4cd2bfa749dc.tar
go-tangerine-ca419f3cd8df66f5dc5e8aa61bbd4cd2bfa749dc.tar.gz
go-tangerine-ca419f3cd8df66f5dc5e8aa61bbd4cd2bfa749dc.tar.bz2
go-tangerine-ca419f3cd8df66f5dc5e8aa61bbd4cd2bfa749dc.tar.lz
go-tangerine-ca419f3cd8df66f5dc5e8aa61bbd4cd2bfa749dc.tar.xz
go-tangerine-ca419f3cd8df66f5dc5e8aa61bbd4cd2bfa749dc.tar.zst
go-tangerine-ca419f3cd8df66f5dc5e8aa61bbd4cd2bfa749dc.zip
core: fixed import reporter
Diffstat (limited to 'core')
-rw-r--r--core/blockchain.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/blockchain.go b/core/blockchain.go
index 01aa987dd..f68f4fc0d 100644
--- a/core/blockchain.go
+++ b/core/blockchain.go
@@ -1007,7 +1007,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}
}