Skip to content

Commit 2398f8c

Browse files
committed
Fixed algo perf for updated upstream miner
1 parent a2970bc commit 2398f8c

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

src/base/net/stratum/Client.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -677,8 +677,6 @@ void xmrig::Client::getjob()
677677
using namespace rapidjson;
678678

679679
if (!m_rpcId) return;
680-
if (m_getjob && m_getjob + 30*1000 < Chrono::steadyMSecs()) return;
681-
m_getjob = Chrono::steadyMSecs();
682680

683681
Document doc(kObjectType);
684682
auto &allocator = doc.GetAllocator();

src/base/net/stratum/Client.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,6 @@ class Client : public BaseClient, public IDnsListener, public ILineListener, pub
147147
String m_rpcId;
148148
Tls *m_tls = nullptr;
149149
uint64_t m_expire = 0;
150-
uint64_t m_getjob = 0;
151150
uint64_t m_jobs = 0;
152151
uint64_t m_keepAlive = 0;
153152
uintptr_t m_key = 0;

src/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
#define APP_ID "xmrig-proxy"
2929
#define APP_NAME "xmrig-proxy"
3030
#define APP_DESC "XMRig Stratum proxy"
31-
#define APP_VERSION "6.4.0-mo6"
31+
#define APP_VERSION "6.4.0-mo7"
3232
#define APP_DOMAIN "xmrig.com"
3333
#define APP_SITE "www.xmrig.com"
3434
#define APP_COPYRIGHT "Copyright (C) 2016-2020 xmrig.com"

0 commit comments

Comments
 (0)