mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-17 17:33:47 +00:00
core: report pretty storage sizes for receipt inserts
This commit is contained in:
parent
a4cff48475
commit
4aeed0753e
1 changed files with 1 additions and 1 deletions
|
|
@ -842,7 +842,7 @@ func (bc *BlockChain) InsertReceiptChain(blockChain types.Blocks, receiptChain [
|
||||||
log.Info("Imported new block receipts",
|
log.Info("Imported new block receipts",
|
||||||
"count", stats.processed,
|
"count", stats.processed,
|
||||||
"elapsed", common.PrettyDuration(time.Since(start)),
|
"elapsed", common.PrettyDuration(time.Since(start)),
|
||||||
"bytes", bytes,
|
"size", common.StorageSize(bytes),
|
||||||
"number", head.Number(),
|
"number", head.Number(),
|
||||||
"hash", head.Hash(),
|
"hash", head.Hash(),
|
||||||
"ignored", stats.ignored)
|
"ignored", stats.ignored)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue