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