Commit 54026eda authored by Mark Tyneway's avatar Mark Tyneway

lint: fix

parent d02c33f9
...@@ -144,7 +144,7 @@ const deployFn: DeployFunction = async (hre) => { ...@@ -144,7 +144,7 @@ const deployFn: DeployFunction = async (hre) => {
if ( if (
needsProxyTransfer && needsProxyTransfer &&
(await AddressManager.getAddress('OVM_L1CrossDomainMessenger')) !== (await AddressManager.getAddress('OVM_L1CrossDomainMessenger')) !==
ethers.constants.AddressZero && ethers.constants.AddressZero &&
(await L1CrossDomainMessenger.owner()) !== SystemDictator.address (await L1CrossDomainMessenger.owner()) !== SystemDictator.address
) { ) {
if (isLiveDeployer) { if (isLiveDeployer) {
...@@ -323,7 +323,7 @@ const deployFn: DeployFunction = async (hre) => { ...@@ -323,7 +323,7 @@ const deployFn: DeployFunction = async (hre) => {
checks: async () => { checks: async () => {
assert( assert(
(await AddressManager.getAddress('OVM_L1CrossDomainMessenger')) === (await AddressManager.getAddress('OVM_L1CrossDomainMessenger')) ===
ethers.constants.AddressZero ethers.constants.AddressZero
) )
}, },
}) })
...@@ -359,7 +359,7 @@ const deployFn: DeployFunction = async (hre) => { ...@@ -359,7 +359,7 @@ const deployFn: DeployFunction = async (hre) => {
for (const dead of deads) { for (const dead of deads) {
assert( assert(
(await AddressManager.getAddress(dead)) === (await AddressManager.getAddress(dead)) ===
ethers.constants.AddressZero ethers.constants.AddressZero
) )
} }
}, },
......
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