From 03318d42c23212e2083077da9aba883f36f76c4f Mon Sep 17 00:00:00 2001 From: "alexey.stratulat" <alexey.stratulat@demlabs.net> Date: Wed, 9 Oct 2024 13:54:04 +0700 Subject: [PATCH] [*] Port from feature-13422: Fixed a problem in the output of the command description block list, srv_xchange tx_list, token_emit. --- modules/net/dap_chain_node_cli.c | 4 ++-- modules/service/xchange/dap_chain_net_srv_xchange.c | 2 +- modules/type/blocks/dap_chain_cs_blocks.c | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/net/dap_chain_node_cli.c b/modules/net/dap_chain_node_cli.c index 99484040af..20357cb141 100644 --- a/modules/net/dap_chain_node_cli.c +++ b/modules/net/dap_chain_node_cli.c @@ -230,8 +230,8 @@ int dap_chain_node_cli_init(dap_config_t * g_config) ); dap_cli_server_cmd_add ("token_emit", com_token_emit, "Token emission", - "token_emit { sign -emission <hash> | -token <mempool_token_ticker> -emission_value <value>\n" - "\t-addr <addr> } [-chain_emission <chain_name>] -net <net_name> -certs <cert_list>\n"); + "token_emit { sign -emission <hash> | -token <mempool_token_ticker> -emission_value <value> -addr <addr> } " + "[-chain_emission <chain_name>] -net <net_name> -certs <cert_list>\n"); dap_cli_server_cmd_add("mempool", com_mempool, "Command for working with mempool", "mempool list -net <net_name> [-chain <chain_name>] [-addr <addr>] [-brief] [-limit] [-offset]\n" diff --git a/modules/service/xchange/dap_chain_net_srv_xchange.c b/modules/service/xchange/dap_chain_net_srv_xchange.c index bd3fb71ccb..6fd7d25213 100644 --- a/modules/service/xchange/dap_chain_net_srv_xchange.c +++ b/modules/service/xchange/dap_chain_net_srv_xchange.c @@ -161,7 +161,7 @@ int dap_chain_net_srv_xchange_init() "\tExchange tokens with specified order within specified net name. Specify how many datoshies to sell with rate specified by order\n" "srv_xchange tx_list -net <net_name> [-time_from <From_time>] [-time_to <To_time>]" - "[[-addr <wallet_addr> [-status {inactive|active|all}] ]\n" /* @RRL: #6294 */ + "[-addr <wallet_addr>] [-status {inactive|active|all}]\n" /* @RRL: #6294 */ "\tList of exchange transactions\n" "\tAll times are in RFC822. For example: \"7 Dec 2023 21:18:04\"\n" diff --git a/modules/type/blocks/dap_chain_cs_blocks.c b/modules/type/blocks/dap_chain_cs_blocks.c index 3f03db28c6..039cc54017 100644 --- a/modules/type/blocks/dap_chain_cs_blocks.c +++ b/modules/type/blocks/dap_chain_cs_blocks.c @@ -194,7 +194,7 @@ int dap_chain_cs_blocks_init() "block -net <net_name> [-chain <chain_name>] list [{signed | first_signed}] [-limit] [-offset] [-head]" " [-from_hash <block_hash>] [-to_hash <block_hash>] [-from_date <YYMMDD>] [-to_date <YYMMDD>]" - " [{-cert <signing_cert_name> | -pkey_hash <signing_cert_pkey_hash>}] [-unspent]]\n" + " [{-cert <signing_cert_name> | -pkey_hash <signing_cert_pkey_hash>}] [-unspent]\n" "\t\t List blocks\n\n" "block -net <net_name> [-chain <chain_name>] count\n" -- GitLab