diff options
author | Dion Ahmetaj <Dion Ahmetaj> | 2017-01-14 22:20:54 -0500 |
---|---|---|
committer | Dion Ahmetaj <Dion Ahmetaj> | 2017-02-10 18:07:39 -0500 |
commit | 345ed4823c686edda33e224316c5ade8a5b838ae (patch) | |
tree | 7d113167a22dc88069142584cc32f42202a9ce52 /src/daemon/rpc_command_executor.h | |
parent | Merge pull request #1698 (diff) | |
download | monero-345ed4823c686edda33e224316c5ade8a5b838ae.tar.xz |
Background/smart mining. If a users' computer is plugged into a power
source, and CPU has been idle for some time, then begin mining to some
threshold (don't destroy the users' CPU).
This patch only supports windows and linux (I've only tested on Win64 and
Ubuntu).
The variables currently default to pretty conservative values (i.e. 20%
CPU mining threshold).
Diffstat (limited to '')
-rw-r--r-- | src/daemon/rpc_command_executor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/daemon/rpc_command_executor.h b/src/daemon/rpc_command_executor.h index 4691844fa..5b7b76448 100644 --- a/src/daemon/rpc_command_executor.h +++ b/src/daemon/rpc_command_executor.h @@ -106,7 +106,7 @@ public: bool print_transaction_pool_stats(); - bool start_mining(cryptonote::account_public_address address, uint64_t num_threads, bool testnet); + bool start_mining(cryptonote::account_public_address address, uint64_t num_threads, bool testnet, bool do_background_mining); bool stop_mining(); |