From 5a2c4444a4e2b5ddc5e5dbf98990dcad45e32fe8 Mon Sep 17 00:00:00 2001 From: psychocrypt Date: Tue, 27 Mar 2018 20:54:47 +0200 Subject: POW AEON v7 - add new pow for AEON - fix missing cryptonight-heavy selection for multi hashes --- xmrstak/misc/executor.cpp | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'xmrstak/misc/executor.cpp') diff --git a/xmrstak/misc/executor.cpp b/xmrstak/misc/executor.cpp index a620173..8520237 100644 --- a/xmrstak/misc/executor.cpp +++ b/xmrstak/misc/executor.cpp @@ -571,6 +571,13 @@ void executor::ex_main() pools.emplace_front(0, "donate.xmr-stak.net:4444", "", "", "", 0.0, true, false, "", true); break; + case cryptonight_aeon: + if(dev_tls) + pools.emplace_front(0, "donate.xmr-stak.net:7777", "", "", "", 0.0, true, true, "", true); + else + pools.emplace_front(0, "donate.xmr-stak.net:4444", "", "", "", 0.0, true, false, "", true); + break; + case cryptonight: if(dev_tls) pools.emplace_front(0, "donate.xmr-stak.net:6666", "", "", "", 0.0, true, true, "", false); -- cgit v1.1 From 0c48570ac662662fc9e808c0efe042f843fd6b23 Mon Sep 17 00:00:00 2001 From: psychocrypt Date: Thu, 29 Mar 2018 21:02:58 +0200 Subject: github annotations - documentation: change `aeon` to `aeon7` - change `case` order in `switch` statements - update README.txt --- xmrstak/misc/executor.cpp | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'xmrstak/misc/executor.cpp') diff --git a/xmrstak/misc/executor.cpp b/xmrstak/misc/executor.cpp index 8520237..0e1dd9f 100644 --- a/xmrstak/misc/executor.cpp +++ b/xmrstak/misc/executor.cpp @@ -563,15 +563,8 @@ void executor::ex_main() else pools.emplace_front(0, "donate.xmr-stak.net:5500", "", "", "", 0.0, true, false, "", false); break; - - case cryptonight_lite: - if(dev_tls) - pools.emplace_front(0, "donate.xmr-stak.net:7777", "", "", "", 0.0, true, true, "", true); - else - pools.emplace_front(0, "donate.xmr-stak.net:4444", "", "", "", 0.0, true, false, "", true); - break; - case cryptonight_aeon: + case cryptonight_lite: if(dev_tls) pools.emplace_front(0, "donate.xmr-stak.net:7777", "", "", "", 0.0, true, true, "", true); else -- cgit v1.1