diff --git a/src/backend/opencl/cl/cn/algorithm.cl b/src/backend/opencl/cl/cn/algorithm.cl index 37e534b9..47698f3c 100644 --- a/src/backend/opencl/cl/cn/algorithm.cl +++ b/src/backend/opencl/cl/cn/algorithm.cl @@ -21,7 +21,7 @@ #define ALGO_RX_0 20 #define ALGO_RX_WOW 21 #define ALGO_RX_LOKI 22 -#define ALGO_RX_ARQMA 23 +#define ALGO_RX_ARQ 23 #define ALGO_RX_SFX 24 #define ALGO_RX_KEVA 25 #define ALGO_RX_DEFYX 26 diff --git a/src/backend/opencl/cl/rx/randomx.cl b/src/backend/opencl/cl/rx/randomx.cl index 24a1c46d..f94636e8 100644 --- a/src/backend/opencl/cl/rx/randomx.cl +++ b/src/backend/opencl/cl/rx/randomx.cl @@ -6,7 +6,7 @@ #include "randomx_constants_wow.h" #elif (ALGO == ALGO_RX_LOKI) #include "randomx_constants_loki.h" -#elif (ALGO == ALGO_RX_ARQMA) +#elif (ALGO == ALGO_RX_ARQ) #include "randomx_constants_arqma.h" #elif (ALGO == ALGO_RX_KEVA) #include "randomx_constants_keva.h" diff --git a/src/base/crypto/Coin.cpp b/src/base/crypto/Coin.cpp index 33115484..fcc5dd9f 100644 --- a/src/base/crypto/Coin.cpp +++ b/src/base/crypto/Coin.cpp @@ -49,8 +49,8 @@ struct CoinName static CoinName const coin_names[] = { { "monero", Coin::MONERO }, { "xmr", Coin::MONERO }, - { "arqma", Coin::ARQMA }, - { "arq", Coin::ARQMA }, + { "arqma", Coin::ARQ }, + { "arq", Coin::ARQ }, { "dero", Coin::DERO }, { "keva", Coin::KEVA }, { "ravencoin", Coin::RAVEN }, @@ -70,7 +70,7 @@ xmrig::Algorithm::Id xmrig::Coin::algorithm(uint8_t blobVersion) const case MONERO: return (blobVersion >= 12) ? Algorithm::RX_0 : Algorithm::CN_R; - case ARQMA: + case ARQ: return (blobVersion >= 15) ? Algorithm::RX_ARQ : Algorithm::CN_PICO_0; case DERO: diff --git a/src/base/crypto/Coin.h b/src/base/crypto/Coin.h index 084672fc..26421f3a 100644 --- a/src/base/crypto/Coin.h +++ b/src/base/crypto/Coin.h @@ -40,7 +40,7 @@ public: enum Id : int { INVALID = -1, MONERO, - ARQMA, + ARQ, DERO, KEVA, RAVEN,