Skip to content

Commit 73a863b

Browse files
committed
docs(x/genutil): fix genesis migrate command examples
1 parent 30003f6 commit 73a863b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

x/genutil/client/cli/migrate.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ func MigrateGenesisCmd(migrations types.MigrationMap) *cobra.Command {
2929
Use: "migrate <target-version> <genesis-file>",
3030
Short: "Migrate genesis to a specified target version",
3131
Long: "Migrate the source genesis into the target version and print to STDOUT",
32-
Example: fmt.Sprintf("%s migrate v0.47 /path/to/genesis.json --chain-id=cosmoshub-3 --genesis-time=2019-04-22T17:00:00Z", version.AppName),
32+
Example: fmt.Sprintf("%s genesis migrate v0.47 /path/to/genesis.json --chain-id=cosmoshub-3 --genesis-time=2019-04-22T17:00:00Z", version.AppName),
3333
Args: cobra.ExactArgs(2),
3434
RunE: func(cmd *cobra.Command, args []string) error {
3535
return MigrateHandler(cmd, args, migrations)

0 commit comments

Comments
 (0)