aboutsummaryrefslogtreecommitdiff
path: root/src/daemon/command_parser_executor.cpp
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2018-05-19 23:53:05 +0100
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2018-06-26 08:19:51 +0100
commit50af3579ee735ad6a9d95014f2d9b5141d05769c (patch)
tree05ec23043816fe134021f4e6d08aed59cfbeff53 /src/daemon/command_parser_executor.cpp
parentMerge pull request #3340 (diff)
downloadmonero-50af3579ee735ad6a9d95014f2d9b5141d05769c.tar.xz
alt_chain_info can now give more info about a particular alt chain
Diffstat (limited to 'src/daemon/command_parser_executor.cpp')
-rw-r--r--src/daemon/command_parser_executor.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/daemon/command_parser_executor.cpp b/src/daemon/command_parser_executor.cpp
index 34d9fb4c8..36e040ab5 100644
--- a/src/daemon/command_parser_executor.cpp
+++ b/src/daemon/command_parser_executor.cpp
@@ -599,13 +599,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)