Updted changelog

This commit is contained in:
BenDroid 2018-03-25 14:47:08 +02:00
parent d0ff7dc830
commit f9ee7ffc4b
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@
- Fixed OSX Build
- Fixed force PoW algo version
- Added AEON test vectors for new PoW Algo
- Changed DonateStrategy to latest XMRig to avoid peaks on donate pool when restarting multiple miners
- Changed DonateStrategy to avoid peaks on donate pool when restarting multiple miners
# 1.5.1
- Applied changes for upcoming Monero v7 PoW changes starting 03/28/18 (No changes in config needed)
- Applied changes for upcoming AEON PoW changes starting 04/07/18 (No changes in config needed)

View file

@ -68,7 +68,7 @@ DonateStrategy::DonateStrategy(const char *agent, IStrategyListener *listener) :
m_timer.data = this;
uv_timer_init(uv_default_loop(), &m_timer);
idle(random(1500, 3600) * 1000);
idle(random(1800, 3600) * 1000);
}