Implement RandomX Veil mining

This commit is contained in:
Johannes Westphal 2022-04-13 21:06:55 +02:00
parent 56c95703a5
commit 69f9c30c64
9 changed files with 82 additions and 14 deletions

View file

@ -73,6 +73,7 @@ public:
CN_GR_5 = 0x63120105, // "cn/turtle-lite" GhostRider
GHOSTRIDER_RTM = 0x6c150000, // "ghostrider" GhostRider
RX_0 = 0x72151200, // "rx/0" RandomX (reference configuration).
RX_VEIL = 0x72151201, // "rx/veil" RandomX (Veil).
RX_WOW = 0x72141177, // "rx/wow" RandomWOW (Wownero).
RX_ARQ = 0x72121061, // "rx/arq" RandomARQ (Arqma).
RX_GRAFT = 0x72151267, // "rx/graft" RandomGRAFT (Graft).
@ -142,6 +143,7 @@ public:
# ifdef XMRIG_ALGO_RANDOMX
static const char *kRX;
static const char *kRX_0;
static const char *kRX_VEIL;
static const char *kRX_WOW;
static const char *kRX_ARQ;
static const char *kRX_GRAFT;