Commit 608ebc9a authored by Mark Tyneway's avatar Mark Tyneway

contracts-bedrock: slight cleanup

parent b50bb51e
...@@ -34,7 +34,9 @@ contract CrossDomainMessengerLegacySpacer1 { ...@@ -34,7 +34,9 @@ contract CrossDomainMessengerLegacySpacer1 {
/** /**
* @custom:legacy * @custom:legacy
* @custom:spacer __gap * @custom:spacer __gap
* @notice Spacer for backwards compatibility. * @notice Spacer for backwards compatibility. Comes from OpenZeppelin
* ContextUpgradable via OwnableUpgradeable.
*
*/ */
uint256[50] private spacer_1_0_1600; uint256[50] private spacer_1_0_1600;
...@@ -42,29 +44,60 @@ contract CrossDomainMessengerLegacySpacer1 { ...@@ -42,29 +44,60 @@ contract CrossDomainMessengerLegacySpacer1 {
* @custom:legacy * @custom:legacy
* @custom:spacer _owner * @custom:spacer _owner
* @notice Spacer for backwards compatibility. * @notice Spacer for backwards compatibility.
* Come from OpenZeppelin OwnableUpgradeable.
*/ */
address private spacer_51_0_20; address private spacer_51_0_20;
/** /**
* @custom:legacy * @custom:legacy
* @custom:spacer __gap * @custom:spacer __gap
* @notice Spacer for backwards compatibility. * @notice Spacer for backwards compatibility. Comes from OpenZeppelin
* ContextUpgradable via PausableUpgradable.
*/ */
uint256[49] private spacer_52_0_1568; uint256[49] private spacer_52_0_1568;
/** /**
* @custom:legacy * @custom:legacy
* @custom:spacer _paused * @custom:spacer _paused
* @notice Spacer for backwards compatibility. * @notice Spacer for backwards compatibility. Comes from OpenZeppelin
* PausableUpgradable.
*/ */
bool private spacer_101_0_1; bool private spacer_101_0_1;
/** /**
* @custom:legacy * @custom:legacy
* @custom:spacer __gap * @custom:spacer __gap
* @notice * @notice Spacer for backwards compatibility. Comes from OpenZeppelin
* PausableUpgradable.
*/ */
uint256[49] private spacer_102_0_1568; uint256[49] private spacer_102_0_1568;
/**
* @custom:legacy
* @custom:spacer ReentrancyGuardUpgradeable's `_status` field.
* @notice Spacer for backwards compatibility
*/
uint256 private spacer_151_0_32;
/**
* @custom:spacer ReentrancyGuardUpgradeable
* @notice Spacer for backwards compatibility
*/
uint256[49] private __gap_reentrancy_guard;
/**
* @custom:legacy
* @custom:spacer blockedMessages
* @notice Spacer for backwards compatibility.
*/
mapping(bytes32 => bool) private spacer_201_0_32;
/**
* @custom:legacy
* @custom:spacer relayedMessages
* @notice Spacer for backwards compatibility.
*/
mapping(bytes32 => bool) private spacer_202_0_32;
} }
/** /**
...@@ -123,32 +156,6 @@ abstract contract CrossDomainMessenger is ...@@ -123,32 +156,6 @@ abstract contract CrossDomainMessenger is
*/ */
address public immutable OTHER_MESSENGER; address public immutable OTHER_MESSENGER;
/**
* @custom:spacer ReentrancyGuardUpgradeable's `_status` field.
* @notice Spacer for backwards compatibility
*/
uint256 private spacer_151_0_32;
/**
* @custom:spacer ReentrancyGuardUpgradeable
* @notice Spacer for backwards compatibility
*/
uint256[49] private __gap_reentrancy_guard;
/**
* @custom:legacy
* @custom:spacer blockedMessages
* @notice Spacer for backwards compatibility.
*/
mapping(bytes32 => bool) private spacer_201_0_32;
/**
* @custom:legacy
* @custom:spacer relayedMessages
* @notice Spacer for backwards compatibility.
*/
mapping(bytes32 => bool) private spacer_202_0_32;
/** /**
* @notice Mapping of message hashes to boolean receipt values. Note that a message will only * @notice Mapping of message hashes to boolean receipt values. Note that a message will only
* be present in this mapping if it has successfully been relayed on this chain, and * be present in this mapping if it has successfully been relayed on this chain, and
......
...@@ -210,7 +210,7 @@ const deployFn: DeployFunction = async (hre) => { ...@@ -210,7 +210,7 @@ const deployFn: DeployFunction = async (hre) => {
SystemDictator, SystemDictator,
step: 5, step: 5,
message: ` message: `
Step 5 will initialize all Bedrock contracts After this step is executed, the OptimismPortal Step 5 will initialize all Bedrock contracts. After this step is executed, the OptimismPortal
will be open for deposits but withdrawals will be paused if deploying a production network. will be open for deposits but withdrawals will be paused if deploying a production network.
The Proposer will also be able to submit L2 outputs to the L2OutputOracle. The Proposer will also be able to submit L2 outputs to the L2OutputOracle.
`, `,
...@@ -315,10 +315,7 @@ const deployFn: DeployFunction = async (hre) => { ...@@ -315,10 +315,7 @@ const deployFn: DeployFunction = async (hre) => {
) )
await assertContractVariable(OptimismPortal, 'paused', false) await assertContractVariable(OptimismPortal, 'paused', false)
}
// At the end we finalize the upgrade.
if (await isStep(SystemDictator, 6)) {
console.log(` console.log(`
You must now finalize the upgrade by calling finalize() on the SystemDictator. This will You must now finalize the upgrade by calling finalize() on the SystemDictator. This will
transfer ownership of the ProxyAdmin to the final system owner as specified in the deployment transfer ownership of the ProxyAdmin to the final system owner as specified in the deployment
......
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