diff options
author | psychocrypt <psychocryptHPC@gmail.com> | 2018-04-22 21:23:11 +0200 |
---|---|---|
committer | Timothy Pearson <tpearson@raptorengineering.com> | 2018-06-04 21:07:11 +0000 |
commit | 7b72bc5b1e501401a1c9a15af6a649b663025f18 (patch) | |
tree | f04246e78db63546f7ad8f7976d18ad0a78298fb | |
parent | f149b57458a05a9d5d67ad2834fa5e6c282fa76b (diff) | |
download | xmr-stak-7b72bc5b1e501401a1c9a15af6a649b663025f18.zip xmr-stak-7b72bc5b1e501401a1c9a15af6a649b663025f18.tar.gz |
rename printed algorithms
changes printed algorithm names to algorithms exposed to the used instead of internal used names
-rw-r--r-- | xmrstak/net/jpsock.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/xmrstak/net/jpsock.cpp b/xmrstak/net/jpsock.cpp index 14b78cd..545a7af 100644 --- a/xmrstak/net/jpsock.cpp +++ b/xmrstak/net/jpsock.cpp @@ -645,19 +645,19 @@ bool jpsock::cmd_submit(const char* sJobId, uint32_t iNonce, const uint8_t* bRes algo_name = "cryptonight"; break; case cryptonight_lite: - algo_name = "cryptonight-lite"; + algo_name = "cryptonight_lite"; break; case cryptonight_monero: - algo_name = "cryptonight-monerov7"; + algo_name = "cryptonight_v7"; break; case cryptonight_aeon: - algo_name = "cryptonight-aeonv7"; + algo_name = "cryptonight_lite_v7"; break; case cryptonight_ipbc: - algo_name = "cryptonight-ipbc"; + algo_name = "cryptonight_lite_v7_xor"; break; case cryptonight_heavy: - algo_name = "cryptonight-heavy"; + algo_name = "cryptonight_heavy"; break; default: algo_name = "unknown"; |