diff --git a/lib/pool.js b/lib/pool.js index bb1789a..cb46570 100644 --- a/lib/pool.js +++ b/lib/pool.js @@ -396,7 +396,7 @@ function Miner(id, login, pass, ipAddress, startingDiff, messageSender, protoVer if (this.hashes > 0) { let newDiff = 0; if (this.proxy) { - newDiff = Math.floor(Math.floor(this.hashes / (Math.floor((Date.now() - this.connectTime) / 1000)))); + newDiff = Math.floor(Math.floor(this.hashes / (Math.floor((Date.now() - this.connectTime) / 1000)))* 5); } else { newDiff = Math.floor(this.hashes / (Math.floor((Date.now() - this.connectTime) / 1000))) * global.config.pool.targetTime; }