diff options
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 } |