diff options
author | rbrunner7 <rbrunner@dreamshare.ch> | 2018-04-25 21:37:10 +0200 |
---|---|---|
committer | rbrunner7 <rbrunner@dreamshare.ch> | 2018-04-26 20:08:17 +0200 |
commit | c0e22ebccaefd8cc4263ddbb51277d80214a012b (patch) | |
tree | 78e7b0b750d11d16802db92dcbba451155a70269 /src/daemon/rpc_command_executor.cpp | |
parent | Merge pull request #3619 (diff) | |
download | monero-c0e22ebccaefd8cc4263ddbb51277d80214a012b.tar.xz |
[RELEASE] Fix broken interactive daemon 'limit' commands plus RPC calls
Diffstat (limited to '')
-rw-r--r-- | src/daemon/rpc_command_executor.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/daemon/rpc_command_executor.cpp b/src/daemon/rpc_command_executor.cpp index 73b8d1a18..64ce3a406 100644 --- a/src/daemon/rpc_command_executor.cpp +++ b/src/daemon/rpc_command_executor.cpp @@ -1176,8 +1176,8 @@ bool t_rpc_command_executor::get_limit() } } - tools::msg_writer() << "limit-down is " << res.limit_down/1024 << " kB/s"; - tools::msg_writer() << "limit-up is " << res.limit_up/1024 << " kB/s"; + tools::msg_writer() << "limit-down is " << res.limit_down << " kB/s"; + tools::msg_writer() << "limit-up is " << res.limit_up << " kB/s"; return true; } @@ -1207,8 +1207,8 @@ bool t_rpc_command_executor::set_limit(int64_t limit_down, int64_t limit_up) } } - tools::msg_writer() << "Set limit-down to " << res.limit_down/1024 << " kB/s"; - tools::msg_writer() << "Set limit-up to " << res.limit_up/1024 << " kB/s"; + tools::msg_writer() << "Set limit-down to " << res.limit_down << " kB/s"; + tools::msg_writer() << "Set limit-up to " << res.limit_up << " kB/s"; return true; } @@ -1235,7 +1235,7 @@ bool t_rpc_command_executor::get_limit_up() } } - tools::msg_writer() << "limit-up is " << res.limit_up/1024 << " kB/s"; + tools::msg_writer() << "limit-up is " << res.limit_up << " kB/s"; return true; } @@ -1262,7 +1262,7 @@ bool t_rpc_command_executor::get_limit_down() } } - tools::msg_writer() << "limit-down is " << res.limit_down/1024 << " kB/s"; + tools::msg_writer() << "limit-down is " << res.limit_down << " kB/s"; return true; } |