diff options
author | Neozaru <neozaru@mailoo.org> | 2014-05-25 21:36:12 +0200 |
---|---|---|
committer | Neozaru <neozaru@mailoo.org> | 2014-05-25 21:36:12 +0200 |
commit | af5a28efe5b914e6154048384d82c4b0dbfdb0dc (patch) | |
tree | 5304e5cd34cc21477837a7b453ac37b489bec679 /src/cryptonote_core/miner.h | |
parent | 'getaddress' wallet-rpc command (diff) | |
download | monero-af5a28efe5b914e6154048384d82c4b0dbfdb0dc.tar.xz |
'mining_status' Daemon RPC command
Diffstat (limited to 'src/cryptonote_core/miner.h')
-rw-r--r-- | src/cryptonote_core/miner.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/cryptonote_core/miner.h b/src/cryptonote_core/miner.h index da4578b06..f1e4e5dce 100644 --- a/src/cryptonote_core/miner.h +++ b/src/cryptonote_core/miner.h @@ -36,10 +36,12 @@ namespace cryptonote bool set_block_template(const block& bl, const difficulty_type& diffic, uint64_t height); bool on_block_chain_update(); bool start(const account_public_address& adr, size_t threads_count, const boost::thread::attributes& attrs); - uint64_t get_speed(); + uint64_t get_speed() const; + uint32_t get_threads_count() const; void send_stop_signal(); bool stop(); - bool is_mining(); + bool is_mining() const; + const account_public_address& get_mining_address() const; bool on_idle(); void on_synchronized(); //synchronous analog (for fast calls) |