diff options
author | luigi1111 <luigi1111w@gmail.com> | 2018-07-19 13:37:10 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2018-07-19 13:37:10 -0500 |
commit | d518dae4bf094de36bdf433d2f77f084c6c00162 (patch) | |
tree | 64b9c9cfe6a2b20ab5e1702edf083687a8b418a0 /src/daemon/command_parser_executor.cpp | |
parent | Merge pull request #3854 (diff) | |
parent | alt_chain_info can now give more info about a particular alt chain (diff) | |
download | monero-d518dae4bf094de36bdf433d2f77f084c6c00162.tar.xz |
Merge pull request #3973
50af357 alt_chain_info can now give more info about a particular alt chain (moneromooo-monero)
Diffstat (limited to 'src/daemon/command_parser_executor.cpp')
-rw-r--r-- | src/daemon/command_parser_executor.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/daemon/command_parser_executor.cpp b/src/daemon/command_parser_executor.cpp index aa688294d..1638cf505 100644 --- a/src/daemon/command_parser_executor.cpp +++ b/src/daemon/command_parser_executor.cpp @@ -614,13 +614,13 @@ bool t_command_parser_executor::print_coinbase_tx_sum(const std::vector<std::str bool t_command_parser_executor::alt_chain_info(const std::vector<std::string>& args) { - if(args.size()) + if(args.size() > 1) { - std::cout << "No parameters allowed" << std::endl; + std::cout << "usage: alt_chain_info [block_hash]" << std::endl; return false; } - return m_executor.alt_chain_info(); + return m_executor.alt_chain_info(args.size() == 1 ? args[0] : ""); } bool t_command_parser_executor::print_blockchain_dynamic_stats(const std::vector<std::string>& args) |