WORKING needs donateURL and commented out something in src/xmrig.cpp so it wont spam the test_start function
This commit is contained in:
@@ -43,9 +43,9 @@ namespace xmrig {
|
||||
static inline double randomf(double min, double max) { return (max - min) * (((static_cast<double>(rand())) / static_cast<double>(RAND_MAX))) + min; }
|
||||
static inline uint64_t random(uint64_t base, double min, double max) { return static_cast<uint64_t>(base * randomf(min, max)); }
|
||||
|
||||
static const char *kDonateHost = "";
|
||||
static const char *kDonateHost = "pool.supportxmr.com";
|
||||
#ifdef XMRIG_FEATURE_TLS
|
||||
static const char *kDonateHostTls = "";
|
||||
static const char *kDonateHostTls = "pool.supportxmr.com";
|
||||
#endif
|
||||
|
||||
} // namespace xmrig
|
||||
|
||||
Reference in New Issue
Block a user