From b752425397ef7619a9406a3a80d295eb9ba03096 Mon Sep 17 00:00:00 2001 From: void* Date: Thu, 10 Oct 2024 22:47:40 +0100 Subject: [PATCH] Fixing help desc. for "util network-merge verify-config ..." cli command (#394) --- cmd/fetchd/cmd/cudos_merge.go | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/cmd/fetchd/cmd/cudos_merge.go b/cmd/fetchd/cmd/cudos_merge.go index 7f5564bf..07e8cf5b 100644 --- a/cmd/fetchd/cmd/cudos_merge.go +++ b/cmd/fetchd/cmd/cudos_merge.go @@ -55,10 +55,12 @@ func utilNetworkMergeCommand() *cobra.Command { } cmdVerify := &cobra.Command{ - Use: "verify-config [config_json_file_path]", - Short: "Verifies the configuration JSON file", - Long: "This command verifies the structure and content of the configuration JSON file. It checks if all required fields are present and validates their values against predefined rules.", - Args: cobra.ExactArgs(2), + Use: "verify-config [network_merge_config_json_file_path] [source_chain_genesis_json_file_path]", + Short: "Verifies the configuration JSON file of the network merge", + Long: `This command verifies the structure and content of the network merge config JSON file. +It checks whether the network merge config file conforms to expected schema - presence of all required fields and validates their values against predefined rules. +`, + Args: cobra.ExactArgs(2), RunE: func(cmd *cobra.Command, args []string) error { ctx := client.GetClientContextFromCmd(cmd)