diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-02-13 23:05:33 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-02-13 23:50:10 +0000 |
commit | 9925edcb1ef26c5d9fe5d0b9db51d1c6946f6941 (patch) | |
tree | e15b778769cb81e29a01598b9273ceab5d3b47a3 /src | |
parent | Merge pull request #1719 (diff) | |
download | monero-9925edcb1ef26c5d9fe5d0b9db51d1c6946f6941.tar.xz |
rpc: fix some RPC calls not returning OK status when needed
Diffstat (limited to 'src')
-rw-r--r-- | src/rpc/core_rpc_server.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/rpc/core_rpc_server.cpp b/src/rpc/core_rpc_server.cpp index 8165dacbc..2906e6433 100644 --- a/src/rpc/core_rpc_server.cpp +++ b/src/rpc/core_rpc_server.cpp @@ -1387,6 +1387,7 @@ namespace cryptonote std::pair<uint64_t, uint64_t> amounts = m_core.get_coinbase_tx_sum(req.height, req.count); res.emission_amount = amounts.first; res.fee_amount = amounts.second; + res.status = CORE_RPC_STATUS_OK; return true; } //------------------------------------------------------------------------------------------------------------------------------ @@ -1437,12 +1438,14 @@ namespace cryptonote bool core_rpc_server::on_start_save_graph(const COMMAND_RPC_START_SAVE_GRAPH::request& req, COMMAND_RPC_START_SAVE_GRAPH::response& res) { m_p2p.set_save_graph(true); + res.status = CORE_RPC_STATUS_OK; return true; } //------------------------------------------------------------------------------------------------------------------------------ bool core_rpc_server::on_stop_save_graph(const COMMAND_RPC_STOP_SAVE_GRAPH::request& req, COMMAND_RPC_STOP_SAVE_GRAPH::response& res) { m_p2p.set_save_graph(false); + res.status = CORE_RPC_STATUS_OK; return true; } //------------------------------------------------------------------------------------------------------------------------------ |