Skip to content

Commit

Permalink
Merge pull request #5 from OffchainLabs/stylus-master-ca73cbc
Browse files Browse the repository at this point in the history
Nitro master `ca73cbc`
  • Loading branch information
rachel-bousfield authored Jul 7, 2023
2 parents ae92999 + e86ca85 commit 88e9fa0
Showing 1 changed file with 21 additions and 10 deletions.
31 changes: 21 additions & 10 deletions src/bridge/SequencerInbox.sol
Original file line number Diff line number Diff line change
Expand Up @@ -392,18 +392,29 @@ contract SequencerInbox is DelegateCallAware, GasRefundEnabled, ISequencerInbox
// this msg isn't included in the current sequencer batch, but instead added to
// the delayed messages queue that is yet to be included
address batchPoster = msg.sender;
uint256 dataCost = block.basefee;
bytes memory spendingReportMsg;
if (hostChainIsArbitrum) {
// Include extra cost for the host chain's L1 gas charging
dataCost += ArbGasInfo(address(0x6c)).getL1BaseFeeEstimate();
// Include extra gas for the host chain's L1 gas charging
uint256 l1Fees = ArbGasInfo(address(0x6c)).getCurrentTxL1GasFees();
uint256 extraGas = l1Fees / block.basefee;
require(extraGas <= type(uint64).max, "L1_GAS_NOT_UINT64");
spendingReportMsg = abi.encodePacked(
block.timestamp,
batchPoster,
dataHash,
seqMessageIndex,
block.basefee,
uint64(extraGas)
);
} else {
spendingReportMsg = abi.encodePacked(
block.timestamp,
batchPoster,
dataHash,
seqMessageIndex,
block.basefee
);
}
bytes memory spendingReportMsg = abi.encodePacked(
block.timestamp,
batchPoster,
dataHash,
seqMessageIndex,
dataCost
);
uint256 msgNum = bridge.submitBatchSpendingReport(
batchPoster,
keccak256(spendingReportMsg)
Expand Down

0 comments on commit 88e9fa0

Please sign in to comment.