Skip to content

Commit

Permalink
op-node: fix flags message format lint
Browse files Browse the repository at this point in the history
  • Loading branch information
protolambda committed Apr 13, 2023
1 parent f45f8d4 commit afdfe61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion op-node/flags/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ func init() {
func CheckRequired(ctx *cli.Context) error {
for _, f := range requiredFlags {
if !ctx.GlobalIsSet(f.GetName()) {
return fmt.Errorf("flag %s is required", f.GetName)
return fmt.Errorf("flag %s is required", f.GetName())
}
}
return nil
Expand Down

0 comments on commit afdfe61

Please sign in to comment.