Skip to content

Commit

Permalink
Enable fetch all
Browse files Browse the repository at this point in the history
  • Loading branch information
KaloyanTanev committed Sep 19, 2024
1 parent ced30ab commit 4f607a0
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions cmd/exit.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,6 @@ func bindExitFlags(cmd *cobra.Command, config *exitConfig, flags []exitCLIFlag)
return s
}

//nolint:exhaustive // `all` is not yet implemented
switch flag {
case publishAddress:
cmd.Flags().StringVar(&config.PublishAddress, publishAddress.String(), "https://api.obol.tech/v1", maybeRequired("The URL of the remote API."))
Expand Down Expand Up @@ -149,9 +148,8 @@ func bindExitFlags(cmd *cobra.Command, config *exitConfig, flags []exitCLIFlag)
cmd.Flags().DurationVar(&config.PublishTimeout, publishTimeout.String(), 30*time.Second, "Timeout for publishing a signed exit to the publish-address API.")
case validatorIndex:
cmd.Flags().Uint64Var(&config.ValidatorIndex, validatorIndex.String(), 0, "Validator index of the validator to exit, the associated public key must be present in the cluster lock manifest. If --validator-public-key is also provided, validator existence won't be checked on the beacon chain.")
// TODO: enable after all functionalities for --all are ready
// case all:
// cmd.Flags().BoolVar(&config.All, all.String(), false, "Exit all currently active validators in the cluster.")
case all:
cmd.Flags().BoolVar(&config.All, all.String(), false, "Exit all currently active validators in the cluster.")

Check warning on line 152 in cmd/exit.go

View check run for this annotation

Codecov / codecov/patch

cmd/exit.go#L151-L152

Added lines #L151 - L152 were not covered by tests
}

if f.required {
Expand Down

0 comments on commit 4f607a0

Please sign in to comment.