aboutsummaryrefslogtreecommitdiffstats
path: root/core/headerchain.go
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2017-02-28 21:36:51 +0800
committerPéter Szilágyi <peterke@gmail.com>2017-02-28 21:36:51 +0800
commite02883c0a2a9aa70de6b80413ca40dca833c4946 (patch)
treea722ade4f0a3ad46ad4e2eb3a87dfd5915c77e05 /core/headerchain.go
parente588e0ca2b3b615af0ecfd5679c42df8f1cc4272 (diff)
downloaddexon-e02883c0a2a9aa70de6b80413ca40dca833c4946.tar
dexon-e02883c0a2a9aa70de6b80413ca40dca833c4946.tar.gz
dexon-e02883c0a2a9aa70de6b80413ca40dca833c4946.tar.bz2
dexon-e02883c0a2a9aa70de6b80413ca40dca833c4946.tar.lz
dexon-e02883c0a2a9aa70de6b80413ca40dca833c4946.tar.xz
dexon-e02883c0a2a9aa70de6b80413ca40dca833c4946.tar.zst
dexon-e02883c0a2a9aa70de6b80413ca40dca833c4946.zip
core, log: track field length and pad to align
Diffstat (limited to 'core/headerchain.go')
-rw-r--r--core/headerchain.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/headerchain.go b/core/headerchain.go
index 775321bc6..5f6073917 100644
--- a/core/headerchain.go
+++ b/core/headerchain.go
@@ -330,8 +330,8 @@ func (hc *HeaderChain) InsertHeaderChain(chain []*types.Header, checkFreq int, w
}
// Report some public statistics so the user has a clue what's going on
last := chain[len(chain)-1]
- log.Info("Imported new block headers", "count", stats.processed, "number", last.Number, "hash", last.Hash(),
- "elapsed", common.PrettyDuration(time.Since(start)), "ignored", stats.ignored)
+ log.Info("Imported new block headers", "count", stats.processed, "elapsed", common.PrettyDuration(time.Since(start)),
+ "number", last.Number, "hash", last.Hash(), "ignored", stats.ignored)
return 0, nil
}