Commit 758c50d3 authored by Mark Tyneway's avatar Mark Tyneway

sdk: fix deposit-eth task

The address was not being referenced resulting in a bug. We should
delete this task eventually and have coverage of this with op-e2e
although this does cover the hardhat deployments which op-e2e does
not cover. Perhaps this should live in hive then longer term.
Ported from the `feat/mainnet` branch.
parent 5a24e0a4
...@@ -130,8 +130,8 @@ task('deposit-eth', 'Deposits ether to L2.') ...@@ -130,8 +130,8 @@ task('deposit-eth', 'Deposits ether to L2.')
contractAddrs = { contractAddrs = {
l1: { l1: {
AddressManager: Deployment__AddressManager.address, AddressManager: Deployment__AddressManager.address,
L1CrossDomainMessenger: Deployment__L1CrossDomainMessenger, L1CrossDomainMessenger: Deployment__L1CrossDomainMessenger.address,
L1StandardBridge: Deployment__L1StandardBridge, L1StandardBridge: Deployment__L1StandardBridge.address,
StateCommitmentChain: ethers.constants.AddressZero, StateCommitmentChain: ethers.constants.AddressZero,
CanonicalTransactionChain: ethers.constants.AddressZero, CanonicalTransactionChain: ethers.constants.AddressZero,
BondManager: ethers.constants.AddressZero, BondManager: 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