diff options
| author | Dion Ahmetaj <Dion Ahmetaj> | 2017-02-08 16:17:50 -0500 |
|---|---|---|
| committer | Dion Ahmetaj <Dion Ahmetaj> | 2017-02-10 18:07:43 -0500 |
| commit | ad95e65028302c151546e49698284fdf48727c6d (patch) | |
| tree | 5f543e906da88c41936ae279c63e96ebb5909435 /src/daemon/rpc_command_executor.cpp | |
| parent | e4dfd2fb6345c1d212ca3706254faa988948beb3 (diff) | |
| download | monzero-core-ad95e65028302c151546e49698284fdf48727c6d.tar.gz monzero-core-ad95e65028302c151546e49698284fdf48727c6d.tar.xz monzero-core-ad95e65028302c151546e49698284fdf48727c6d.zip | |
Added a note about smart mining to status command. Fixed up a bug where I was resetting bg mining enabled instead of started. Upped the miner threshold. Also moved setting of enabled on start above miner thread creation since starting with true, then stopping, then starting with false resulted in race condition.
Diffstat (limited to 'src/daemon/rpc_command_executor.cpp')
| -rw-r--r-- | src/daemon/rpc_command_executor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/daemon/rpc_command_executor.cpp b/src/daemon/rpc_command_executor.cpp index ae5c2d31d..00b349b15 100644 --- a/src/daemon/rpc_command_executor.cpp +++ b/src/daemon/rpc_command_executor.cpp @@ -377,7 +377,7 @@ bool t_rpc_command_executor::show_status() { % (unsigned long long)(ires.target_height >= ires.height ? ires.target_height : ires.height) % get_sync_percentage(ires) % (ires.testnet ? "testnet" : "mainnet") - % (mining_busy ? "syncing" : mres.active ? "mining at " + get_mining_speed(mres.speed) : "not mining") + % (mining_busy ? "syncing" : mres.active ? ( ( mres.is_background_mining_enabled ? "smart " : "" ) + std::string("mining at ") + get_mining_speed(mres.speed) ) : "not mining") % get_mining_speed(ires.difficulty / ires.target) % (unsigned)hfres.version % get_fork_extra_info(hfres.earliest_height, ires.height, ires.target) |
