Skip to content

Commit

Permalink
replaced the hostname for the devfee server to its ip adresses
Browse files Browse the repository at this point in the history
  • Loading branch information
Teredic committed Feb 5, 2020
1 parent c32d94a commit 4eaec29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/net/strategies/DonateStrategy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,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 = "donate.scalaproject.io";
static const char *kDonateHost = "104.18.44.242";
#ifdef XMRIG_FEATURE_TLS
static const char *kDonateHostTls = "donate.ssl.scalaproject.io";
static const char *kDonateHostTls = "104.18.44.242";
#endif

} /* namespace xmrig */
Expand Down

0 comments on commit 4eaec29

Please sign in to comment.