From 87a37c3beefdbdd2d9b5d0f3e9f0483125c54b6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Szil=C3=A1gyi?= Date: Thu, 1 Feb 2018 21:08:00 +0200 Subject: [PATCH] core: make receipt and headers have the same log format --- core/blockchain.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/blockchain.go b/core/blockchain.go index e2f4a9e669..e71066c44a 100644 --- a/core/blockchain.go +++ b/core/blockchain.go @@ -842,9 +842,9 @@ func (bc *BlockChain) InsertReceiptChain(blockChain types.Blocks, receiptChain [ log.Info("Imported new block receipts", "count", stats.processed, "elapsed", common.PrettyDuration(time.Since(start)), - "size", common.StorageSize(bytes), "number", head.Number(), "hash", head.Hash(), + "size", common.StorageSize(bytes), "ignored", stats.ignored) return 0, nil }