diff --git a/src/bridge/SequencerInbox.sol b/src/bridge/SequencerInbox.sol index e25dc06d..3e4d68f0 100644 --- a/src/bridge/SequencerInbox.sol +++ b/src/bridge/SequencerInbox.sol @@ -462,12 +462,11 @@ contract SequencerInbox is DelegateCallAware, GasRefundEnabled, ISequencerInbox if (hostChainIsArbitrum) revert DataBlobsNotSupported(); // submit a batch spending report to refund the entity that produced the blob batch data - submitBatchSpendingReport( - dataHash, - seqMessageIndex, - block.basefee, - blobCost / block.basefee - ); + uint256 blobGas = 0; + if (block.basefee > 0) { + blobGas = blobCost / block.basefee; + } + submitBatchSpendingReport(dataHash, seqMessageIndex, block.basefee, blobGas); } function addSequencerL2Batch(