Skip to content

Commit

Permalink
fix: bool flag reading
Browse files Browse the repository at this point in the history
  • Loading branch information
mempirate committed Nov 9, 2024
1 parent 651b96a commit d777789
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/utils/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -1616,7 +1616,7 @@ func SetBuilderConfig(ctx *cli.Context, cfg *builder.Config) {
cfg.SecondsInSlot = ctx.Uint64(BuilderSecondsInSlot.Name)
cfg.DisableBundleFetcher = ctx.IsSet(BuilderDisableBundleFetcher.Name)
cfg.DryRun = ctx.IsSet(BuilderDryRun.Name)
cfg.VerifyConstraints = ctx.IsSet(BuilderVerifyConstraints.Name)
cfg.VerifyConstraints = ctx.Bool(BuilderVerifyConstraints.Name)
cfg.IgnoreLatePayloadAttributes = ctx.IsSet(BuilderIgnoreLatePayloadAttributes.Name)
cfg.BuilderSecretKey = ctx.String(BuilderSecretKey.Name)
cfg.RelaySecretKey = ctx.String(BuilderRelaySecretKey.Name)
Expand Down

0 comments on commit d777789

Please sign in to comment.