diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-01-11 21:50:41 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-01-11 21:50:41 +0000 |
commit | eaf4dcd7471302f8badaaca0deb509f715499a26 (patch) | |
tree | ee1b06b5542e7dddebbd938c6eaa59900f78d935 /src | |
parent | wallet2: decide at runtime which upper tx size to use (diff) | |
download | monero-eaf4dcd7471302f8badaaca0deb509f715499a26.tar.xz |
daemon: fix status command when run from command line
Diffstat (limited to 'src')
-rw-r--r-- | src/daemon/rpc_command_executor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/daemon/rpc_command_executor.cpp b/src/daemon/rpc_command_executor.cpp index 565623468..fc06c858b 100644 --- a/src/daemon/rpc_command_executor.cpp +++ b/src/daemon/rpc_command_executor.cpp @@ -277,7 +277,7 @@ bool t_rpc_command_executor::show_status() { { return true; } - if (!m_rpc_client->rpc_request(mreq, mres, "mining_status", fail_message.c_str())) + if (!m_rpc_client->rpc_request(mreq, mres, "/mining_status", fail_message.c_str())) { return true; } |