Commit 66d56a47 authored by mergify[bot]'s avatar mergify[bot] Committed by GitHub

Merge pull request #4001 from ethereum-optimism/sc/ctb-msd-del-addrs

fix(ctb): tweak addresses for MSD to wipe
parents 05e86e85 dbb76ac2
...@@ -66,9 +66,7 @@ contract MigrationSystemDictator is BaseSystemDictator { ...@@ -66,9 +66,7 @@ contract MigrationSystemDictator is BaseSystemDictator {
*/ */
function step3() external onlyOwner step(3) { function step3() external onlyOwner step(3) {
// Remove all deprecated addresses from the AddressManager // Remove all deprecated addresses from the AddressManager
string[18] memory deprecated = [ string[17] memory deprecated = [
"Proxy__OVM_L1CrossDomainMessenger",
"Proxy__OVM_L1StandardBridge",
"OVM_CanonicalTransactionChain", "OVM_CanonicalTransactionChain",
"OVM_L2CrossDomainMessenger", "OVM_L2CrossDomainMessenger",
"OVM_DecompressionPrecompileAddress", "OVM_DecompressionPrecompileAddress",
...@@ -84,7 +82,8 @@ contract MigrationSystemDictator is BaseSystemDictator { ...@@ -84,7 +82,8 @@ contract MigrationSystemDictator is BaseSystemDictator {
"OVM_StateManagerFactory", "OVM_StateManagerFactory",
"OVM_StateTransitionerFactory", "OVM_StateTransitionerFactory",
"OVM_SafetyChecker", "OVM_SafetyChecker",
"OVM_L1MultiMessageRelayer" "OVM_L1MultiMessageRelayer",
"BondManager"
]; ];
for (uint256 i = 0; i < deprecated.length; i++) { for (uint256 i = 0; i < deprecated.length; i++) {
......
...@@ -195,8 +195,6 @@ const deployFn: DeployFunction = async (hre) => { ...@@ -195,8 +195,6 @@ const deployFn: DeployFunction = async (hre) => {
}, },
3: async () => { 3: async () => {
const deads = [ const deads = [
'Proxy__OVM_L1CrossDomainMessenger',
'Proxy__OVM_L1StandardBridge',
'OVM_CanonicalTransactionChain', 'OVM_CanonicalTransactionChain',
'OVM_L2CrossDomainMessenger', 'OVM_L2CrossDomainMessenger',
'OVM_DecompressionPrecompileAddress', 'OVM_DecompressionPrecompileAddress',
...@@ -213,6 +211,7 @@ const deployFn: DeployFunction = async (hre) => { ...@@ -213,6 +211,7 @@ const deployFn: DeployFunction = async (hre) => {
'OVM_StateTransitionerFactory', 'OVM_StateTransitionerFactory',
'OVM_SafetyChecker', 'OVM_SafetyChecker',
'OVM_L1MultiMessageRelayer', 'OVM_L1MultiMessageRelayer',
'BondManager',
] ]
for (const dead of deads) { for (const dead of deads) {
assert( assert(
......
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