From 71089bb9f5f357e381f3a8dac5aaddea5ea26c27 Mon Sep 17 00:00:00 2001 From: wmpadmin Date: Sat, 7 Apr 2018 13:02:26 +0200 Subject: [PATCH] fixed total/own hashrate --- server/Server/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/Server/Program.cs b/server/Server/Program.cs index b088a64..eafed55 100644 --- a/server/Server/Program.cs +++ b/server/Server/Program.cs @@ -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;