Commit 3dd296e8 authored by Mark Tyneway's avatar Mark Tyneway

contracts-bedrock: fix deployment

It was being deployed with the implementation address
of the `L2OutputOracle` instead of the proxy. This
was preventing output commitments to actually be posted.
parent 2a7be367
---
'@eth-optimism/contracts-bedrock': patch
---
Fix portal deployment to have L2OutputOracle proxy address
...@@ -17,7 +17,7 @@ const deployFn: DeployFunction = async (hre) => { ...@@ -17,7 +17,7 @@ const deployFn: DeployFunction = async (hre) => {
waitConfirmations: deployConfig.deploymentWaitConfirmations, waitConfirmations: deployConfig.deploymentWaitConfirmations,
}) })
const oracle = await get('L2OutputOracle') const oracle = await get('L2OutputOracleProxy')
await deploy('OptimismPortal', { await deploy('OptimismPortal', {
from: deployer, from: deployer,
......
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