From a03b13b50b11638e3c2a6b92a336753572802789 Mon Sep 17 00:00:00 2001 From: NoodleDoodleNoodleDoodleNoodleDoodleNoo Date: Tue, 13 May 2014 17:55:50 -0700 Subject: [PATCH] Update daemon_commands_handler.h 1. Added "diff" command to show current estimated difficulty and hash-rate. --- src/daemon/daemon_commands_handler.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/daemon/daemon_commands_handler.h b/src/daemon/daemon_commands_handler.h index dca524f7..74b671e2 100644 --- a/src/daemon/daemon_commands_handler.h +++ b/src/daemon/daemon_commands_handler.h @@ -34,6 +34,7 @@ public: m_cmd_binder.set_handler("show_hr", boost::bind(&daemon_cmmands_handler::show_hr, this, _1), "Start showing hash rate"); m_cmd_binder.set_handler("hide_hr", boost::bind(&daemon_cmmands_handler::hide_hr, this, _1), "Stop showing hash rate"); m_cmd_binder.set_handler("save", boost::bind(&daemon_cmmands_handler::save, this, _1), "Save blockchain"); + m_cmd_binder.set_handler("diff", boost::bind(&daemon_cmmands_handler::diff, this, _1), "Show difficulty"); } bool start_handling() @@ -98,6 +99,17 @@ private: return true; } //-------------------------------------------------------------------------------- + bool diff(const std::vector& args) + { + cryptonote::difficulty_type difficulty = m_srv.get_payload_object().get_core().get_blockchain_storage().get_difficulty_for_next_block(); + uint64_t height = m_srv.get_payload_object().get_core().get_blockchain_storage().get_current_blockchain_height(); + + LOG_PRINT_GREEN("BH: " << height << ", DIFF: " << difficulty + << ", HR: " << (int) difficulty / 60L << " H/s", LOG_LEVEL_0); + + return true; + } + //-------------------------------------------------------------------------------- bool print_bc_outs(const std::vector& args) { if(args.size() != 1)