diff options
author | Jeffrey Wilcke <geffobscura@gmail.com> | 2016-10-11 06:16:08 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2016-10-15 17:02:53 +0800 |
commit | 9fa42b1e02b3a71d4173394fdae2a69f8d12b546 (patch) | |
tree | 35c932749f3c48f81dde44986fb01dacb3c26b60 | |
parent | 0718ebbbce1ff869fd5f8d783632ba07de5cf5bf (diff) | |
download | go-tangerine-9fa42b1e02b3a71d4173394fdae2a69f8d12b546.tar go-tangerine-9fa42b1e02b3a71d4173394fdae2a69f8d12b546.tar.gz go-tangerine-9fa42b1e02b3a71d4173394fdae2a69f8d12b546.tar.bz2 go-tangerine-9fa42b1e02b3a71d4173394fdae2a69f8d12b546.tar.lz go-tangerine-9fa42b1e02b3a71d4173394fdae2a69f8d12b546.tar.xz go-tangerine-9fa42b1e02b3a71d4173394fdae2a69f8d12b546.tar.zst go-tangerine-9fa42b1e02b3a71d4173394fdae2a69f8d12b546.zip |
[release/1.4.18] core: fixed import reporter
(cherry picked from commit ca419f3cd8df66f5dc5e8aa61bbd4cd2bfa749dc)
-rw-r--r-- | core/blockchain.go | 2 |
1 files changed, 1 insertions, 1 deletions
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} } |