Skip to content

Commit

Permalink
chore: Decrement storage buffer, add EigenDA delay proof entrypoint, …
Browse files Browse the repository at this point in the history
…& refactor EigenDA tests - update gap__ to ensure rollup manager still lives at slot 50
  • Loading branch information
EthenNotEthan committed Jan 17, 2025
1 parent 439c9d6 commit a1e3d98
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/bridge/SequencerInbox.sol
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ contract SequencerInbox is DelegateCallAware, GasRefundEnabled, ISequencerInbox
// gap used to ensure forward compatiblity with newly introduced storage variables
// from upstream offchainlabs/nitro-contracts. Any newly introduced storage vars
// made in subsequent releases should result in decrementing the gap counter
uint256[37] internal __gap;
uint256[36] internal __gap;
IRollupManager public eigenDARollupManager;

constructor(
Expand Down
4 changes: 2 additions & 2 deletions test/storage/SequencerInbox
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
|-----------------------------+----------------------------------------------------------+------+--------+-------+----------------------------------------------|
| buffer | struct BufferData | 12 | 0 | 64 | src/bridge/SequencerInbox.sol:SequencerInbox |
|-----------------------------+----------------------------------------------------------+------+--------+-------+----------------------------------------------|
| __gap | uint256[37] | 14 | 0 | 1184 | src/bridge/SequencerInbox.sol:SequencerInbox |
| __gap | uint256[36] | 14 | 0 | 1152 | src/bridge/SequencerInbox.sol:SequencerInbox |
|-----------------------------+----------------------------------------------------------+------+--------+-------+----------------------------------------------|
| eigenDARollupManager | contract IRollupManager | 51 | 0 | 20 | src/bridge/SequencerInbox.sol:SequencerInbox |
| eigenDARollupManager | contract IRollupManager | 50 | 0 | 20 | src/bridge/SequencerInbox.sol:SequencerInbox |
╰-----------------------------+----------------------------------------------------------+------+--------+-------+----------------------------------------------╯

0 comments on commit a1e3d98

Please sign in to comment.