Skip to content

Commit

Permalink
fix: remove unused param
Browse files Browse the repository at this point in the history
  • Loading branch information
gpabst committed Dec 11, 2024
1 parent 9a5b264 commit 71071cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/operator/get_operator_split.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func GetOperatorSplitCmd(p utils.Prompter) *cli.Command {
Name: "get-rewards-split",
Usage: "Get operator rewards split",
Action: func(cCtx *cli.Context) error {
return GetOperatorSplit(cCtx, p)
return GetOperatorSplit(cCtx)
},
After: telemetry.AfterRunAction(),
Flags: getOperatorSplitFlags(),
Expand All @@ -29,7 +29,7 @@ func GetOperatorSplitCmd(p utils.Prompter) *cli.Command {
return operatorSplitCmd
}

func GetOperatorSplit(cCtx *cli.Context, p utils.Prompter) error {
func GetOperatorSplit(cCtx *cli.Context) error {
ctx := cCtx.Context
logger := common.GetLogger(cCtx)

Expand Down

0 comments on commit 71071cf

Please sign in to comment.