Skip to content
This repository has been archived by the owner on Jun 9, 2024. It is now read-only.

Commit

Permalink
refactor(chain): improve log string
Browse files Browse the repository at this point in the history
  • Loading branch information
Devon Bear committed Oct 12, 2023
1 parent 24fa5d1 commit 85b7adc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eth/core/chain_writer.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ func (bc *blockchain) InsertBlock(
// *********************************************** //
blockHash, blockNum := block.Hash(), block.Number().Uint64()
bc.logger.Info(
"finalizing evm block", "block_hash", blockHash.Hex(), "num_txs", len(receipts))
"finalizing evm block", "hash", blockHash.Hex(), "num_txs", len(receipts))

// store the block header on the host chain
err = bc.bp.StoreHeader(block.Header())
Expand Down

0 comments on commit 85b7adc

Please sign in to comment.