From afdfe619c18e48fe284af448d101944f2e643362 Mon Sep 17 00:00:00 2001 From: protolambda Date: Thu, 13 Apr 2023 14:22:35 +0200 Subject: [PATCH] op-node: fix flags message format lint --- op-node/flags/flags.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/op-node/flags/flags.go b/op-node/flags/flags.go index 71baca5abea0..ded27af0b72e 100644 --- a/op-node/flags/flags.go +++ b/op-node/flags/flags.go @@ -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