Commit 6d37c2f3 authored by Matthew Slipper's avatar Matthew Slipper Committed by GitHub

op-deployer: Remove ASR implementation field (#13817)

parent f910bf28
......@@ -47,7 +47,6 @@ type L2OpchainDeployment struct {
OptimismPortalProxy common.Address `json:"OptimismPortalProxy"`
DisputeGameFactoryProxy common.Address `json:"DisputeGameFactoryProxy"`
AnchorStateRegistryProxy common.Address `json:"AnchorStateRegistryProxy"`
AnchorStateRegistryImpl common.Address `json:"AnchorStateRegistryImpl"`
FaultDisputeGame common.Address `json:"FaultDisputeGame"`
PermissionedDisputeGame common.Address `json:"PermissionedDisputeGame"`
DelayedWETHPermissionedGameProxy common.Address `json:"DelayedWETHPermissionedGameProxy"`
......
......@@ -137,7 +137,6 @@ func L1(globalState *state.State, chainID common.Hash) (*L1Contracts, error) {
OptimismPortalProxyAddress: chainState.OptimismPortalProxyAddress,
DisputeGameFactoryProxyAddress: chainState.DisputeGameFactoryProxyAddress,
AnchorStateRegistryProxyAddress: chainState.AnchorStateRegistryProxyAddress,
AnchorStateRegistryImplAddress: chainState.AnchorStateRegistryImplAddress,
FaultDisputeGameAddress: chainState.FaultDisputeGameAddress,
PermissionedDisputeGameAddress: chainState.PermissionedDisputeGameAddress,
DelayedWETHPermissionedGameProxyAddress: chainState.DelayedWETHPermissionedGameProxyAddress,
......
......@@ -62,7 +62,6 @@ type DeployOPChainOutput struct {
OptimismPortalProxy common.Address
DisputeGameFactoryProxy common.Address
AnchorStateRegistryProxy common.Address
AnchorStateRegistryImpl common.Address
FaultDisputeGame common.Address
PermissionedDisputeGame common.Address
DelayedWETHPermissionedGameProxy common.Address
......
......@@ -123,7 +123,6 @@ func makeChainState(chainID common.Hash, dco opcm.DeployOPChainOutput) *state.Ch
OptimismPortalProxyAddress: dco.OptimismPortalProxy,
DisputeGameFactoryProxyAddress: dco.DisputeGameFactoryProxy,
AnchorStateRegistryProxyAddress: dco.AnchorStateRegistryProxy,
AnchorStateRegistryImplAddress: dco.AnchorStateRegistryImpl,
FaultDisputeGameAddress: dco.FaultDisputeGame,
PermissionedDisputeGameAddress: dco.PermissionedDisputeGame,
DelayedWETHPermissionedGameProxyAddress: dco.DelayedWETHPermissionedGameProxy,
......
......@@ -105,7 +105,6 @@ type ChainState struct {
OptimismPortalProxyAddress common.Address `json:"optimismPortalProxyAddress"`
DisputeGameFactoryProxyAddress common.Address `json:"disputeGameFactoryProxyAddress"`
AnchorStateRegistryProxyAddress common.Address `json:"anchorStateRegistryProxyAddress"`
AnchorStateRegistryImplAddress common.Address `json:"anchorStateRegistryImplAddress"`
FaultDisputeGameAddress common.Address `json:"faultDisputeGameAddress"`
PermissionedDisputeGameAddress common.Address `json:"permissionedDisputeGameAddress"`
DelayedWETHPermissionedGameProxyAddress common.Address `json:"delayedWETHPermissionedGameProxyAddress"`
......
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