Commit 476eb8f1 authored by Karl Floersch's avatar Karl Floersch Committed by GitHub

Fix deployment bug (#57)

parent f06c8652
...@@ -51,7 +51,9 @@ export const makeContractDeployConfig = async ( ...@@ -51,7 +51,9 @@ export const makeContractDeployConfig = async (
afterDeploy: async (contracts): Promise<void> => { afterDeploy: async (contracts): Promise<void> => {
const xDomainMessenger = getContractFactory( const xDomainMessenger = getContractFactory(
'OVM_L1CrossDomainMessenger' 'OVM_L1CrossDomainMessenger'
).attach(contracts.Proxy__Proxy__OVM_L1CrossDomainMessenger.address) )
.connect(config.deploymentSigner)
.attach(contracts.Proxy__OVM_L1CrossDomainMessenger.address)
await xDomainMessenger.initialize(AddressManager.address) await xDomainMessenger.initialize(AddressManager.address)
}, },
}, },
......
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