Skip to content

Commit

Permalink
Fixed copy paste error
Browse files Browse the repository at this point in the history
  • Loading branch information
MoneroOcean committed Jul 12, 2018
1 parent d25d7fe commit af648e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion multihashing.cc
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ class CCryptonightHeavyAsync : public Nan::AsyncWorker {
break;
case 1: cryptonight_single_hash<xmrig::CRYPTONIGHT_HEAVY, SOFT_AES, xmrig::VARIANT_XHV >(reinterpret_cast<const uint8_t*>(m_input), m_input_len, reinterpret_cast<uint8_t*>(m_output), &m_ctx);
break;
case 1: cryptonight_single_hash<xmrig::CRYPTONIGHT_HEAVY, SOFT_AES, xmrig::VARIANT_TUBE>(reinterpret_cast<const uint8_t*>(m_input), m_input_len, reinterpret_cast<uint8_t*>(m_output), &m_ctx);
case 2: cryptonight_single_hash<xmrig::CRYPTONIGHT_HEAVY, SOFT_AES, xmrig::VARIANT_TUBE>(reinterpret_cast<const uint8_t*>(m_input), m_input_len, reinterpret_cast<uint8_t*>(m_output), &m_ctx);
break;
default: cryptonight_single_hash<xmrig::CRYPTONIGHT_HEAVY, SOFT_AES, xmrig::VARIANT_0 >(reinterpret_cast<const uint8_t*>(m_input), m_input_len, reinterpret_cast<uint8_t*>(m_output), &m_ctx);
}
Expand Down

0 comments on commit af648e0

Please sign in to comment.