Commit f2229b8b authored by Joshua Gutow's avatar Joshua Gutow Committed by GitHub

op-node: Disable xor requirement on Network and rollup.config flags (#8727)

parent 21d24135
...@@ -55,10 +55,11 @@ func CLIRollupConfigFlag(envPrefix string) cli.Flag { ...@@ -55,10 +55,11 @@ func CLIRollupConfigFlag(envPrefix string) cli.Flag {
// This checks flags that are exclusive & required. Specifically for each // This checks flags that are exclusive & required. Specifically for each
// set of flags, exactly one flag must be set. // set of flags, exactly one flag must be set.
var requiredXorFlags = [][]string{ var requiredXorFlags = [][]string{
{ // TODO(client-pod#391): Re-enable this check at a later point
RollupConfigFlagName, // {
NetworkFlagName, // RollupConfigFlagName,
}, // NetworkFlagName,
// },
} }
func CheckRequiredXor(ctx *cli.Context) error { func CheckRequiredXor(ctx *cli.Context) error {
......
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