Merge pull request #5868
1f1fff2
daemon: print mining algorithm in mining_status even when not mining (moneromooo-monero)
This commit is contained in:
commit
b526208001
|
@ -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() << "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)
|
if (mres.active || mres.is_background_mining_enabled)
|
||||||
{
|
{
|
||||||
tools::msg_writer() << "PoW algorithm: " << mres.pow_algorithm;
|
|
||||||
tools::msg_writer() << "Mining address: " << mres.address;
|
tools::msg_writer() << "Mining address: " << mres.address;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue