fixed total/own hashrate

This commit is contained in:
wmpadmin 2018-04-07 13:02:26 +02:00
parent d0c544c6f2
commit 71089bb9f5
1 changed files with 1 additions and 1 deletions

View File

@ -997,7 +997,7 @@ namespace Server {
}
Console.WriteLine ("[{0}] heartbeat, connections: client {1}, pool {2}, jobqueue: {3}, total/own: {4}/{5} h/s", DateTime.Now.ToString (),
clients.Count, PoolConnectionFactory.Connections.Count, jobQueue.Count, totalownspeed, totalspeed);
clients.Count, PoolConnectionFactory.Connections.Count, jobQueue.Count, totalspeed,totalownspeed);
while (jobQueue.Count > JobCacheSize) {
string deq;