Skip to content

Commit

Permalink
fix(dump-logs): fix dump tx typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mortal123 committed Dec 22, 2021
1 parent ea0b014 commit 98512fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion evmcore/state_processor.go
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ func (ctx *LoggerContext) dumpTransaction(index int, tx *types.Transaction, rece
from, _ := types.Sender(ctx.signer, tx)
entry := map[string]interface{}{
"blockNumber": ctx.header.Number.Uint64(),
"blockHash": ctx.header.Number.Uint64(),
"blockHash": ctx.header.Hash,
"transactionIndex": index,
"transactionHash": tx.Hash(),
"from": from,
Expand Down

0 comments on commit 98512fa

Please sign in to comment.