Browse Source

Update miner.go

master
yuriy0803 2 years ago committed by GitHub
parent
commit
94f106a0a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      proxy/miner.go

4
proxy/miner.go

@ -91,9 +91,9 @@ func (s *ProxyServer) processShare(login, id, ip string, t *BlockTemplate, param
// Ausgabe der formatierten Informationen in der Kommandozeile (cmd) // Ausgabe der formatierten Informationen in der Kommandozeile (cmd)
log.Printf("Mining Information:") log.Printf("Mining Information:")
log.Printf("Pool Difficulty: %d (%s)", shareDiff, hashrateShareDiff) log.Printf("Pool Difficulty: %d (%s)", shareDiff, hashrateShare)
log.Printf("Block Difficulty: %d (%s)", t.Difficulty.Int64(), hashrateBlockDiff) log.Printf("Block Difficulty: %d (%s)", t.Difficulty.Int64(), hashrateBlockDiff)
log.Printf("Share Difficulty: %d (%s)", shareDiffCalc, hashrateShare) log.Printf("Share Difficulty: %d (%s)", shareDiffCalc, hashrateShareDiff)
log.Printf("Submitted by: %v@%v", login, ip) log.Printf("Submitted by: %v@%v", login, ip)
} }

Loading…
Cancel
Save