You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
lots of L2 txs in Sepolia getting skipped with error: Skipping tx due to insufficient fee per gas
this is due to max fee requirement getting set by L1 function getManaBaseFeeAt which uses L1 gas fees for calculation, resulting to unexpected values in a live network (sepolia)
The text was updated successfully, but these errors were encountered:
When sending a tx, aztecjs would pick a `maxFeePerGas` equivalent to the
network's current base fee. This means that if the network fees
increased before the tx was mined, it became ineligible.
This adds a padding (defaulting to an extra 50%) to the fees set.
Fixes#11358
---------
Co-authored-by: spypsy <spypsy@users.noreply.github.com>
lots of L2 txs in Sepolia getting skipped with error:
Skipping tx due to insufficient fee per gas
this is due to max fee requirement getting set by L1 function
getManaBaseFeeAt
which uses L1 gas fees for calculation, resulting to unexpected values in a live network (sepolia)The text was updated successfully, but these errors were encountered: