diff options
author | fireice-uk <fireice-uk@users.noreply.github.com> | 2018-04-24 15:40:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-24 15:40:22 +0100 |
commit | 18e5856b98951f4cd0b3fa695efcfbcf1dee2bdf (patch) | |
tree | 94eb38d840c6aa96dcfab6c50d569321c95110da /xmrstak | |
parent | 509f81fe94a1775ea63afb80fc07b5f62abb8267 (diff) | |
parent | d3e289ae387b1ab94dc0fd70fdea274e91d1ba21 (diff) | |
download | xmr-stak-18e5856b98951f4cd0b3fa695efcfbcf1dee2bdf.zip xmr-stak-18e5856b98951f4cd0b3fa695efcfbcf1dee2bdf.tar.gz |
Merge pull request #1490 from psychocrypt/topic-renamePrintedAlgorithms
rename printed algorithms
Diffstat (limited to 'xmrstak')
-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"; |