From 9fa42b1e02b3a71d4173394fdae2a69f8d12b546 Mon Sep 17 00:00:00 2001 From: Jeffrey Wilcke Date: Tue, 11 Oct 2016 00:16:08 +0200 Subject: [release/1.4.18] core: fixed import reporter (cherry picked from commit ca419f3cd8df66f5dc5e8aa61bbd4cd2bfa749dc) --- core/blockchain.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/blockchain.go b/core/blockchain.go index d3cad4575..4f11439bc 100644 --- a/core/blockchain.go +++ b/core/blockchain.go @@ -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} } -- cgit v1.2.3