Skip to content

Commit

Permalink
[fix] remove space from op type (#439)
Browse files Browse the repository at this point in the history
  • Loading branch information
shrimalmadhur authored Apr 3, 2024
1 parent 4f8f282 commit e250ad8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node/plugin/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ func NewConfig(ctx *cli.Context) (*Config, error) {
}

op := ctx.GlobalString(OperationFlag.Name)
if op != "opt-in" && op != "opt-out" && op != "list-quorums " {
if op != "opt-in" && op != "opt-out" && op != "list-quorums" {
return nil, errors.New("unsupported operation type")
}

Expand Down

0 comments on commit e250ad8

Please sign in to comment.