diff options
author | psychocrypt <psychocryptHPC@gmail.com> | 2018-03-27 20:54:47 +0200 |
---|---|---|
committer | psychocrypt <psychocryptHPC@gmail.com> | 2018-03-27 21:17:36 +0200 |
commit | 5a2c4444a4e2b5ddc5e5dbf98990dcad45e32fe8 (patch) | |
tree | 8185467fb893d95a9e3ada6a19d77973432c3e24 /xmrstak/jconf.hpp | |
parent | 09a5dcce2c51d87d77244970d2c09bea3207da7a (diff) | |
download | xmr-stak-5a2c4444a4e2b5ddc5e5dbf98990dcad45e32fe8.zip xmr-stak-5a2c4444a4e2b5ddc5e5dbf98990dcad45e32fe8.tar.gz |
POW AEON v7
- add new pow for AEON
- fix missing cryptonight-heavy selection for multi hashes
Diffstat (limited to 'xmrstak/jconf.hpp')
-rw-r--r-- | xmrstak/jconf.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/xmrstak/jconf.hpp b/xmrstak/jconf.hpp index 6874d37..f81a3a2 100644 --- a/xmrstak/jconf.hpp +++ b/xmrstak/jconf.hpp @@ -49,6 +49,8 @@ public: bool TlsSecureAlgos(); inline xmrstak_algo GetMiningAlgo() { return mining_algo; } + + inline xmrstak_algo GetMiningAlgoRoot() { return mining_algo_root; } std::string GetMiningCoin(); @@ -91,4 +93,5 @@ private: bool bHaveAes; xmrstak_algo mining_algo; + xmrstak_algo mining_algo_root; }; |