aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2016-02-08 18:33:30 +0200
committerRiccardo Spagni <ric@spagni.net>2016-02-08 18:33:30 +0200
commita1a5b810bc7672e0d4777d75375649c63531561c (patch)
tree353f4f6cc200b12c69a4bef61179bdb2109966a6 /src
parentMerge pull request #643 (diff)
parentdaemon: remove leftover debug log (diff)
downloadmonero-a1a5b810bc7672e0d4777d75375649c63531561c.tar.xz
Merge pull request #645
d9f4b39 daemon: remove leftover debug log (moneromooo-monero)
Diffstat (limited to 'src')
-rw-r--r--src/daemon/rpc_command_executor.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/daemon/rpc_command_executor.cpp b/src/daemon/rpc_command_executor.cpp
index 49b4cc23a..361808cf7 100644
--- a/src/daemon/rpc_command_executor.cpp
+++ b/src/daemon/rpc_command_executor.cpp
@@ -251,7 +251,6 @@ bool t_rpc_command_executor::show_difficulty() {
static std::string get_mining_speed(uint64_t hr)
{
-std::cerr << "get_mining_speed called with " << hr << std::endl;
if (hr>1e9) return (boost::format("%.2f GH/s") % (hr/1e9)).str();
if (hr>1e6) return (boost::format("%.2f MH/s") % (hr/1e6)).str();
if (hr>1e3) return (boost::format("%.2f kH/s") % (hr/1e3)).str();