Skip to content

Commit

Permalink
Merge pull request #943 from ethereum-optimism/MSilb7-patch-1
Browse files Browse the repository at this point in the history
Add handling for "noncalldata_gas" to the L1 data fee calculation
  • Loading branch information
sbvegan authored Oct 27, 2023
2 parents 983fea8 + 197f5cf commit 81e4c8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/docs/developers/build/transaction-fees.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ This fee is based on four factors:
Here's the math:

```
l1_data_fee = l1_gas_price * (tx_data_gas + fixed_overhead) * dynamic_overhead
l1_data_fee = l1_gas_price * (tx_data_gas + fixed_overhead + noncalldata_gas) * dynamic_overhead
```

Where `tx_data_gas` is:
Expand Down

0 comments on commit 81e4c8d

Please sign in to comment.