mirror of
https://github.com/SChernykh/p2pool.git
synced 2024-11-17 08:17:55 +00:00
Miner: display shares found in status
This commit is contained in:
parent
a133a25cc3
commit
a1d1420ec3
1 changed files with 3 additions and 2 deletions
|
@ -80,8 +80,9 @@ void Miner::print_status()
|
|||
const uint64_t hr = (dt > 0.0) ? static_cast<uint64_t>(hash_count / dt) : 0;
|
||||
|
||||
LOGINFO(0, "status" <<
|
||||
"\nThreads = " << m_threads <<
|
||||
"\nHashrate = " << log::Hashrate(hr)
|
||||
"\nThreads = " << m_threads <<
|
||||
"\nHashrate = " << log::Hashrate(hr) <<
|
||||
"\nShares found = " << m_sharesFound.load()
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue