Commit 813cd01b authored by protolambda's avatar protolambda

op-batcher: fix config Check method-receiver ptr

parent 6bd72f00
......@@ -60,8 +60,8 @@ type CLIConfig struct {
RPC oprpc.CLIConfig
}
func (c CLIConfig) Check() error {
// TODO: check the sanity of flags loaded directly https://github.com/ethereum-optimism/optimism/issues/7512
func (c *CLIConfig) Check() error {
// TODO(7512): check the sanity of flags loaded directly https://github.com/ethereum-optimism/optimism/issues/7512
if err := c.MetricsConfig.Check(); err != nil {
return err
......
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