Skip to content

Commit

Permalink
Rename newSubmitPartialExitCmd to newSignPartialExitCmd
Browse files Browse the repository at this point in the history
  • Loading branch information
KaloyanTanev committed Oct 23, 2024
1 parent 213a9da commit 20a2292
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ func New() *cobra.Command {
),
newExitCmd(
newListActiveValidatorsCmd(runListActiveValidatorsCmd),
newSubmitPartialExitCmd(runSignPartialExit),
newSignPartialExitCmd(runSignPartialExit),
newBcastFullExitCmd(runBcastFullExit),
newFetchExitCmd(runFetchExit),
),
Expand Down
2 changes: 1 addition & 1 deletion cmd/exit_sign.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
"github.com/obolnetwork/charon/eth2util/keystore"
)

func newSubmitPartialExitCmd(runFunc func(context.Context, exitConfig) error) *cobra.Command {
func newSignPartialExitCmd(runFunc func(context.Context, exitConfig) error) *cobra.Command {
var config exitConfig

cmd := &cobra.Command{
Expand Down

0 comments on commit 20a2292

Please sign in to comment.