diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-02-28 21:36:51 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2017-02-28 21:36:51 +0800 |
commit | e02883c0a2a9aa70de6b80413ca40dca833c4946 (patch) | |
tree | a722ade4f0a3ad46ad4e2eb3a87dfd5915c77e05 /core/headerchain.go | |
parent | e588e0ca2b3b615af0ecfd5679c42df8f1cc4272 (diff) | |
download | go-tangerine-e02883c0a2a9aa70de6b80413ca40dca833c4946.tar.gz go-tangerine-e02883c0a2a9aa70de6b80413ca40dca833c4946.tar.zst go-tangerine-e02883c0a2a9aa70de6b80413ca40dca833c4946.zip |
core, log: track field length and pad to align
Diffstat (limited to 'core/headerchain.go')
-rw-r--r-- | core/headerchain.go | 4 |
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 } |