Commit 931e517b authored by Javed Khan's avatar Javed Khan Committed by GitHub

fix (bedrock): deploy L2OO - fix args (#2836)

* fix (bedrock): deploy L2OO - fix args

* chore: changeset
parent 977493bc
---
'@eth-optimism/contracts-bedrock': patch
---
Fix order of args to L2OO constructor
...@@ -19,11 +19,11 @@ const deployFn: DeployFunction = async (hre) => { ...@@ -19,11 +19,11 @@ const deployFn: DeployFunction = async (hre) => {
from: deployer, from: deployer,
args: [ args: [
hre.deployConfig.submissionInterval, hre.deployConfig.submissionInterval,
hre.deployConfig.l2BlockTime,
hre.deployConfig.genesisOutput, hre.deployConfig.genesisOutput,
hre.deployConfig.historicalBlocks, hre.deployConfig.historicalBlocks,
hre.deployConfig.startingBlockNumber, hre.deployConfig.startingBlockNumber,
hre.deployConfig.startingTimestamp, hre.deployConfig.startingTimestamp,
hre.deployConfig.l2BlockTime,
hre.deployConfig.sequencerAddress, hre.deployConfig.sequencerAddress,
], ],
log: true, log: true,
......
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