Skip to content

Commit

Permalink
Suggestion from review
Browse files Browse the repository at this point in the history
  • Loading branch information
spalladino committed Jan 21, 2025
1 parent f41053a commit a8075ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions yarn-project/ethereum/src/l1_tx_utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ export class L1TxUtils {

let priorityFee: bigint;
if (gasConfig.fixedPriorityFeePerGas) {
this.logger?.debug('Using fixed priority fee per gas', {
this.logger?.debug('Using fixed priority fee per L1 gas', {
fixedPriorityFeePerGas: gasConfig.fixedPriorityFeePerGas,
});
// try to maintain precision up to 1000000 wei
Expand Down Expand Up @@ -514,7 +514,7 @@ export class L1TxUtils {
maxFeePerBlobGas = maxFeePerBlobGas > minBlobFee ? maxFeePerBlobGas : minBlobFee;
}

this.logger?.debug(`Computed gas price`, {
this.logger?.debug(`Computed L1 gas price`, {
attempt,
baseFee: formatGwei(baseFee),
maxFeePerGas: formatGwei(maxFeePerGas),
Expand Down

0 comments on commit a8075ab

Please sign in to comment.