diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2020-11-28 21:35:34 -0600 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2020-11-28 21:35:34 -0600 |
| commit | b37d6fe36838f62276351ea45bc51b43dae8f37c (patch) | |
| tree | bf5fb361488e9a9c2ed14023206dca397dea975f /src/daemon/command_server.cpp | |
| parent | 55a39f8e67fb71d637571726da3f23af52668d11 (diff) | |
| parent | 83da867474ea076c136123684acd6a92abcd3f55 (diff) | |
| download | monzero-core-b37d6fe36838f62276351ea45bc51b43dae8f37c.tar.gz monzero-core-b37d6fe36838f62276351ea45bc51b43dae8f37c.tar.xz monzero-core-b37d6fe36838f62276351ea45bc51b43dae8f37c.zip | |
Merge pull request #6826
83da867 Update error messages in daemon (tmoravec)
Diffstat (limited to 'src/daemon/command_server.cpp')
| -rw-r--r-- | src/daemon/command_server.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/daemon/command_server.cpp b/src/daemon/command_server.cpp index ac4c30726..dd5f76188 100644 --- a/src/daemon/command_server.cpp +++ b/src/daemon/command_server.cpp @@ -223,7 +223,8 @@ t_command_server::t_command_server( m_command_lookup.set_handler( "hard_fork_info" , std::bind(&t_command_parser_executor::hard_fork_info, &m_parser, p::_1) - , "Print the hard fork voting information." + , "hard_fork_info <version>" + , "Print the hard fork voting information. If given a version, prints whether is this version enabled." ); m_command_lookup.set_handler( "bans" @@ -314,6 +315,7 @@ t_command_server::t_command_server( m_command_lookup.set_handler( "prune_blockchain" , std::bind(&t_command_parser_executor::prune_blockchain, &m_parser, p::_1) + , "prune_blockchain [confirm]" , "Prune the blockchain." ); m_command_lookup.set_handler( |
