Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OPCM Input: clear InputSet #13745

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions op-deployer/pkg/deployer/opcm/asterisc.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@ type DeployAsteriscInput struct {
PreimageOracle common.Address
}

func (input *DeployAsteriscInput) InputSet() bool {
return true
}

type DeployAsteriscOutput struct {
AsteriscSingleton common.Address
}
Expand Down
4 changes: 0 additions & 4 deletions op-deployer/pkg/deployer/opcm/delayed_weth.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,6 @@ type DeployDelayedWETHInput struct {
DelayedWethDelay *big.Int
}

func (input *DeployDelayedWETHInput) InputSet() bool {
return true
}

type DeployDelayedWETHOutput struct {
DelayedWethImpl common.Address
DelayedWethProxy common.Address
Expand Down
4 changes: 0 additions & 4 deletions op-deployer/pkg/deployer/opcm/dispute_game.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,6 @@ type DeployDisputeGameInput struct {
Challenger common.Address
}

func (input *DeployDisputeGameInput) InputSet() bool {
return true
}

type DeployDisputeGameOutput struct {
DisputeGameImpl common.Address
}
Expand Down
4 changes: 0 additions & 4 deletions op-deployer/pkg/deployer/opcm/implementations.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,6 @@ type DeployImplementationsInput struct {
StandardVersionsToml string // contents of 'standard-versions-mainnet.toml' or 'standard-versions-sepolia.toml' file
}

func (input *DeployImplementationsInput) InputSet() bool {
return true
}

type DeployImplementationsOutput struct {
Opcm common.Address
DelayedWETHImpl common.Address
Expand Down
4 changes: 0 additions & 4 deletions op-deployer/pkg/deployer/opcm/opchain.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,6 @@ type DeployOPChainInputV160 struct {
AllowCustomDisputeParameters bool
}

func (input *DeployOPChainInputV160) InputSet() bool {
return true
}

type DeployOPChainOutput struct {
OpChainProxyAdmin common.Address
AddressManager common.Address
Expand Down
4 changes: 0 additions & 4 deletions op-deployer/pkg/deployer/opcm/proxy.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@ type DeployProxyInput struct {
Owner common.Address
}

func (input *DeployProxyInput) InputSet() bool {
return true
}

type DeployProxyOutput struct {
Proxy common.Address
}
Expand Down
4 changes: 0 additions & 4 deletions op-deployer/pkg/deployer/opcm/superchain.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,6 @@ type DeploySuperchainInput struct {
RecommendedProtocolVersion params.ProtocolVersion `toml:"recommendedProtocolVersion"`
}

func (dsi *DeploySuperchainInput) InputSet() bool {
return true
}

type DeploySuperchainOutput struct {
SuperchainProxyAdmin common.Address
SuperchainConfigImpl common.Address
Expand Down