diff options
author | luigi1111 <luigi1111w@gmail.com> | 2019-09-14 13:10:51 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2019-09-14 13:10:51 -0500 |
commit | b52620800100063ffac771e98101ae10fb5a3fbd (patch) | |
tree | a00e67ea16333a0683d740341992febcf0baf835 | |
parent | Merge pull request #5866 (diff) | |
parent | daemon: print mining algorithm in mining_status even when not mining (diff) | |
download | monero-b52620800100063ffac771e98101ae10fb5a3fbd.tar.xz |
Merge pull request #5868
1f1fff2 daemon: print mining algorithm in mining_status even when not mining (moneromooo-monero)
-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 d4b9434da..014865730 100644 --- a/src/daemon/rpc_command_executor.cpp +++ b/src/daemon/rpc_command_executor.cpp @@ -578,9 +578,9 @@ bool t_rpc_command_executor::mining_status() { tools::msg_writer() << "Mining at " << get_mining_speed(mres.speed) << " with " << mres.threads_count << " threads"; } + tools::msg_writer() << "PoW algorithm: " << mres.pow_algorithm; if (mres.active || mres.is_background_mining_enabled) { - tools::msg_writer() << "PoW algorithm: " << mres.pow_algorithm; tools::msg_writer() << "Mining address: " << mres.address; } |