Commit 7e2bb8a9 authored by refcell's avatar refcell Committed by GitHub

fix(op-challenger): use op challenger env var prefix (#10442)

parent 671d08bb
...@@ -133,7 +133,7 @@ func listClaimsFlags() []cli.Flag { ...@@ -133,7 +133,7 @@ func listClaimsFlags() []cli.Flag {
flags.L1EthRpcFlag, flags.L1EthRpcFlag,
GameAddressFlag, GameAddressFlag,
} }
cliFlags = append(cliFlags, oplog.CLIFlags("OP_CHALLENGER")...) cliFlags = append(cliFlags, oplog.CLIFlags(flags.EnvVarPrefix)...)
return cliFlags return cliFlags
} }
......
...@@ -118,7 +118,7 @@ func listGamesFlags() []cli.Flag { ...@@ -118,7 +118,7 @@ func listGamesFlags() []cli.Flag {
flags.FactoryAddressFlag, flags.FactoryAddressFlag,
flags.GameWindowFlag, flags.GameWindowFlag,
} }
cliFlags = append(cliFlags, oplog.CLIFlags("OP_CHALLENGER")...) cliFlags = append(cliFlags, oplog.CLIFlags(flags.EnvVarPrefix)...)
return cliFlags return cliFlags
} }
......
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