Commit 996d1f1e authored by Mark Tyneway's avatar Mark Tyneway

bindings: regenerate

parent a8b042bf
This source diff could not be displayed because it is too large. You can view the blob instead.
This diff is collapsed.
...@@ -292,6 +292,8 @@ func deployL1Contracts(config *DeployConfig, backend *backends.SimulatedBackend) ...@@ -292,6 +292,8 @@ func deployL1Contracts(config *DeployConfig, backend *backends.SimulatedBackend)
{ {
Name: "OptimismPortal", Name: "OptimismPortal",
Args: []interface{}{ Args: []interface{}{
predeploys.DevL2OutputOracleAddr,
config.FinalSystemOwner,
uint642Big(config.FinalizationPeriodSeconds), uint642Big(config.FinalizationPeriodSeconds),
}, },
}, },
...@@ -354,8 +356,9 @@ func l1Deployer(backend *backends.SimulatedBackend, opts *bind.TransactOpts, dep ...@@ -354,8 +356,9 @@ func l1Deployer(backend *backends.SimulatedBackend, opts *bind.TransactOpts, dep
_, tx, _, err = bindings.DeployOptimismPortal( _, tx, _, err = bindings.DeployOptimismPortal(
opts, opts,
backend, backend,
predeploys.DevL2OutputOracleAddr, deployment.Args[0].(common.Address),
deployment.Args[0].(*big.Int), deployment.Args[1].(common.Address),
deployment.Args[2].(*big.Int),
) )
case "L1CrossDomainMessenger": case "L1CrossDomainMessenger":
_, tx, _, err = bindings.DeployL1CrossDomainMessenger( _, tx, _, err = bindings.DeployL1CrossDomainMessenger(
......
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