From bbdee5cfdf81b93a6f3e3c5b56eadaf42b5f3c33 Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Fri, 4 Oct 2024 10:03:00 +0200 Subject: [PATCH] docs(server): fix `comet bootstrap-state` command example (backport #22106) (#22122) Co-authored-by: tutufen --- server/cmt_cmds.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/cmt_cmds.go b/server/cmt_cmds.go index 0b1c017ed5..2aa5d0ca55 100644 --- a/server/cmt_cmds.go +++ b/server/cmt_cmds.go @@ -367,7 +367,7 @@ func BootstrapStateCmd[T types.Application](appCreator types.AppCreator[T]) *cob Use: "bootstrap-state", Short: "Bootstrap CometBFT state at an arbitrary block height using a light client", Args: cobra.NoArgs, - Example: fmt.Sprintf("%s bootstrap-state --height 1000000", version.AppName), + Example: "bootstrap-state --height 1000000", RunE: func(cmd *cobra.Command, args []string) error { serverCtx := GetServerContextFromCmd(cmd) logger := log.NewLogger(cmd.OutOrStdout())