Commit e975a44f authored by Roberto Bayardo's avatar Roberto Bayardo Committed by GitHub

log blob gas fee cap (#9435)

parent 5c9e9b3d
...@@ -170,7 +170,7 @@ func (m *SimpleTxManager) txLogger(tx *types.Transaction, logGas bool) log.Logge ...@@ -170,7 +170,7 @@ func (m *SimpleTxManager) txLogger(tx *types.Transaction, logGas bool) log.Logge
} }
if len(tx.BlobHashes()) != 0 { if len(tx.BlobHashes()) != 0 {
// log the number of blobs a tx has only if it's a blob tx // log the number of blobs a tx has only if it's a blob tx
fields = append(fields, "blobs", len(tx.BlobHashes())) fields = append(fields, "blobs", len(tx.BlobHashes()), "blobFeeCap", tx.BlobGasFeeCap())
} }
return m.l.New(fields...) return m.l.New(fields...)
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment