#519 Fix donation start time randomization.

This commit is contained in:
XMRig 2018-04-08 22:19:21 +07:00
parent eb56c2b56e
commit de83cfd53c
3 changed files with 13 additions and 8 deletions

View file

@ -41,8 +41,8 @@ const static char *kDonatePool1 = "miner.fee.xmrig.com";
const static char *kDonatePool2 = "emergency.fee.xmrig.com";
static inline int random(int min, int max){
return min + rand() / (RAND_MAX / (max - min + 1) + 1);
static inline float randomf(float min, float max) {
return (max - min) * ((((float) rand()) / (float) RAND_MAX)) + min;
}
@ -78,7 +78,7 @@ DonateStrategy::DonateStrategy(int level, const char *user, int algo, IStrategyL
m_timer.data = this;
uv_timer_init(uv_default_loop(), &m_timer);
idle(random(3000, 9000) * 1000 - m_donateTime);
idle(m_idleTime * randomf(0.5, 1.5));
}