From e94db381e0fc960bff035ae7138c22e6299d7132 Mon Sep 17 00:00:00 2001 From: Alfonso Acosta Date: Wed, 13 Oct 2021 12:52:32 +0200 Subject: [PATCH] Correct reingest-range output command name when invoking detect-gaps --- services/horizon/cmd/db.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/horizon/cmd/db.go b/services/horizon/cmd/db.go index fbfcc32d31..5e4c261ef6 100644 --- a/services/horizon/cmd/db.go +++ b/services/horizon/cmd/db.go @@ -405,7 +405,7 @@ var dbDetectGapsCmd = &cobra.Command{ fmt.Println("Horizon commands to run in order to fill in the gaps:") cmdname := os.Args[0] for _, g := range gaps { - fmt.Printf("%s db reingest %d %d\n", cmdname, g.StartSequence, g.EndSequence) + fmt.Printf("%s db reingest range %d %d\n", cmdname, g.StartSequence, g.EndSequence) } return nil },