Commit 087f1f4e authored by Mark Tyneway's avatar Mark Tyneway Committed by GitHub

Merge pull request #1424 from ethereum-optimism/fix/batch-submitter-logging

batch-submitter: eip1559 logging
parents 1a73fac7 78ca518b
---
'@eth-optimism/batch-submitter': patch
---
Add loglines for eip1559 related fields before sending a transaction
...@@ -195,6 +195,9 @@ export abstract class BatchSubmitter { ...@@ -195,6 +195,9 @@ export abstract class BatchSubmitter {
beforeSendTransaction: (tx: PopulatedTransaction) => { beforeSendTransaction: (tx: PopulatedTransaction) => {
this.logger.info(`Submitting ${txName} transaction`, { this.logger.info(`Submitting ${txName} transaction`, {
gasPrice: tx.gasPrice, gasPrice: tx.gasPrice,
maxFeePerGas: tx.maxFeePerGas,
maxPriorityFeePerGas: tx.maxPriorityFeePerGas,
gasLimit: tx.gasLimit,
nonce: tx.nonce, nonce: tx.nonce,
contractAddr: this.chainContract.address, contractAddr: this.chainContract.address,
}) })
......
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