From e60031e027ccc31b9bdc12b6a80d0bbddbf78cfe Mon Sep 17 00:00:00 2001 From: yuriy0803 <68668177+yuriy0803@users.noreply.github.com> Date: Fri, 8 Sep 2023 19:05:33 +0200 Subject: [PATCH] Update miner.go --- proxy/miner.go | 1 + 1 file changed, 1 insertion(+) diff --git a/proxy/miner.go b/proxy/miner.go index 31b1bf3..852b9da 100644 --- a/proxy/miner.go +++ b/proxy/miner.go @@ -91,6 +91,7 @@ func (s *ProxyServer) processShare(login, id, ip string, t *BlockTemplate, param // Ausgabe der formatierten Informationen in der Kommandozeile (cmd) log.Printf("Mining Information:") + log.Printf("Blockchain Height: %d", t.Height) // GeƤndert zu "Blockchain Height" log.Printf("Pool Difficulty: %d (%s)", shareDiff, hashrateShare) log.Printf("Block Difficulty: %d (%s)", t.Difficulty.Int64(), hashrateBlockDiff) log.Printf("Share Difficulty: %d (%s)", shareDiffCalc, hashrateShareDiff)