Commit 8e605053 authored by Mark Tyneway's avatar Mark Tyneway

contracts-bedrock: fix storage lock

parent 6fa6cd78
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
|---------------|-------------------------------------------------|------|--------|-------|----------------------------------------------| |---------------|-------------------------------------------------|------|--------|-------|----------------------------------------------|
| _initialized | uint8 | 0 | 0 | 1 | src/L1/L1StandardBridge.sol:L1StandardBridge | | _initialized | uint8 | 0 | 0 | 1 | src/L1/L1StandardBridge.sol:L1StandardBridge |
| _initializing | bool | 0 | 1 | 1 | src/L1/L1StandardBridge.sol:L1StandardBridge | | _initializing | bool | 0 | 1 | 1 | src/L1/L1StandardBridge.sol:L1StandardBridge |
| spacer_0_0_20 | address | 0 | 2 | 20 | src/L1/L1StandardBridge.sol:L1StandardBridge | | spacer_0_2_20 | address | 0 | 2 | 20 | src/L1/L1StandardBridge.sol:L1StandardBridge |
| spacer_1_0_20 | address | 1 | 0 | 20 | src/L1/L1StandardBridge.sol:L1StandardBridge | | spacer_1_0_20 | address | 1 | 0 | 20 | src/L1/L1StandardBridge.sol:L1StandardBridge |
| deposits | mapping(address => mapping(address => uint256)) | 2 | 0 | 32 | src/L1/L1StandardBridge.sol:L1StandardBridge | | deposits | mapping(address => mapping(address => uint256)) | 2 | 0 | 32 | src/L1/L1StandardBridge.sol:L1StandardBridge |
| _MESSENGER | contract CrossDomainMessenger | 3 | 0 | 20 | src/L1/L1StandardBridge.sol:L1StandardBridge | | _MESSENGER | contract CrossDomainMessenger | 3 | 0 | 20 | src/L1/L1StandardBridge.sol:L1StandardBridge |
...@@ -153,7 +153,7 @@ ...@@ -153,7 +153,7 @@
|---------------|-------------------------------------------------|------|--------|-------|----------------------------------------------| |---------------|-------------------------------------------------|------|--------|-------|----------------------------------------------|
| _initialized | uint8 | 0 | 0 | 1 | src/L2/L2StandardBridge.sol:L2StandardBridge | | _initialized | uint8 | 0 | 0 | 1 | src/L2/L2StandardBridge.sol:L2StandardBridge |
| _initializing | bool | 0 | 1 | 1 | src/L2/L2StandardBridge.sol:L2StandardBridge | | _initializing | bool | 0 | 1 | 1 | src/L2/L2StandardBridge.sol:L2StandardBridge |
| spacer_0_0_20 | address | 0 | 2 | 20 | src/L2/L2StandardBridge.sol:L2StandardBridge | | spacer_0_2_20 | address | 0 | 2 | 20 | src/L2/L2StandardBridge.sol:L2StandardBridge |
| spacer_1_0_20 | address | 1 | 0 | 20 | src/L2/L2StandardBridge.sol:L2StandardBridge | | spacer_1_0_20 | address | 1 | 0 | 20 | src/L2/L2StandardBridge.sol:L2StandardBridge |
| deposits | mapping(address => mapping(address => uint256)) | 2 | 0 | 32 | src/L2/L2StandardBridge.sol:L2StandardBridge | | deposits | mapping(address => mapping(address => uint256)) | 2 | 0 | 32 | src/L2/L2StandardBridge.sol:L2StandardBridge |
| _MESSENGER | contract CrossDomainMessenger | 3 | 0 | 20 | src/L2/L2StandardBridge.sol:L2StandardBridge | | _MESSENGER | contract CrossDomainMessenger | 3 | 0 | 20 | src/L2/L2StandardBridge.sol:L2StandardBridge |
......
...@@ -94,9 +94,9 @@ ...@@ -94,9 +94,9 @@
} }
}, },
"L1StandardBridge": { "L1StandardBridge": {
"spacer_0_0_20": { "spacer_0_2_20": {
"slot": 0, "slot": 0,
"offset": 0, "offset": 2,
"length": 20 "length": 20
}, },
"spacer_1_0_20": { "spacer_1_0_20": {
......
...@@ -28,7 +28,7 @@ abstract contract StandardBridge is Initializable { ...@@ -28,7 +28,7 @@ abstract contract StandardBridge is Initializable {
/// @custom:legacy /// @custom:legacy
/// @custom:spacer messenger /// @custom:spacer messenger
/// @notice Spacer for backwards compatibility. /// @notice Spacer for backwards compatibility.
address private spacer_0_0_20; address private spacer_0_2_20;
/// @custom:legacy /// @custom:legacy
/// @custom:spacer l2TokenBridge /// @custom:spacer l2TokenBridge
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment