Commit 6120d22f authored by Adrian Sutton's avatar Adrian Sutton Committed by GitHub

op-proposer: Unhide dispute game flags (#9459)

Stable enough to be visible.
parent cf378095
...@@ -51,23 +51,20 @@ var ( ...@@ -51,23 +51,20 @@ var (
EnvVars: prefixEnvVars("ALLOW_NON_FINALIZED"), EnvVars: prefixEnvVars("ALLOW_NON_FINALIZED"),
} }
DisputeGameFactoryAddressFlag = &cli.StringFlag{ DisputeGameFactoryAddressFlag = &cli.StringFlag{
Name: "dgf-address", Name: "game-factory-address",
Usage: "Address of the DisputeGameFactory contract", Usage: "Address of the DisputeGameFactory contract",
EnvVars: prefixEnvVars("DGF_ADDRESS"), EnvVars: prefixEnvVars("GAME_FACTORY_ADDRESS"),
Hidden: true,
} }
ProposalIntervalFlag = &cli.DurationFlag{ ProposalIntervalFlag = &cli.DurationFlag{
Name: "proposal-interval", Name: "proposal-interval",
Usage: "Interval between submitting L2 output proposals when the DGFAddress is set", Usage: "Interval between submitting L2 output proposals when the dispute game factory address is set",
EnvVars: prefixEnvVars("PROPOSAL_INTERVAL"), EnvVars: prefixEnvVars("PROPOSAL_INTERVAL"),
Hidden: true,
} }
DisputeGameTypeFlag = &cli.UintFlag{ DisputeGameTypeFlag = &cli.UintFlag{
Name: "dg-type", Name: "game-type",
Usage: "Dispute game type to create via the configured DisputeGameFactory", Usage: "Dispute game type to create via the configured DisputeGameFactory",
Value: 0, Value: 0,
EnvVars: prefixEnvVars("DG_TYPE"), EnvVars: prefixEnvVars("GAME_TYPE"),
Hidden: true,
} }
ActiveSequencerCheckDurationFlag = &cli.DurationFlag{ ActiveSequencerCheckDurationFlag = &cli.DurationFlag{
Name: "active-sequencer-check-duration", Name: "active-sequencer-check-duration",
......
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