mirror of
https://github.com/xmrig/xmrig.git
synced 2025-01-03 09:29:46 +00:00
fix yada nonce offset
This commit is contained in:
parent
046b2a17d3
commit
b108845627
2 changed files with 5 additions and 2 deletions
|
@ -54,7 +54,7 @@ static const CoinInfo coinInfo[] = {
|
||||||
{ Algorithm::RX_WOW, "WOW", "Wownero", 300, 100000000000, MAGENTA_BG_BOLD(WHITE_BOLD_S " wownero ") },
|
{ Algorithm::RX_WOW, "WOW", "Wownero", 300, 100000000000, MAGENTA_BG_BOLD(WHITE_BOLD_S " wownero ") },
|
||||||
{ Algorithm::RX_0, "ZEPH", "Zephyr", 120, 1000000000000, BLUE_BG_BOLD( WHITE_BOLD_S " zephyr ") },
|
{ Algorithm::RX_0, "ZEPH", "Zephyr", 120, 1000000000000, BLUE_BG_BOLD( WHITE_BOLD_S " zephyr ") },
|
||||||
{ Algorithm::RX_0, "Townforge","Townforge", 30, 100000000, MAGENTA_BG_BOLD(WHITE_BOLD_S " townforge ") },
|
{ Algorithm::RX_0, "Townforge","Townforge", 30, 100000000, MAGENTA_BG_BOLD(WHITE_BOLD_S " townforge ") },
|
||||||
{ Algorithm::RX_YADA, "YDA", "YadaCoin", 120, 100000000, BLUE_BG_BOLD( WHITE_BOLD_S " yadacoin ") },
|
{ Algorithm::RX_YADA, "YDA", "YadaCoin", 120, 100000000, BLUE_BG_BOLD( WHITE_BOLD_S " yada ") },
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -180,7 +180,10 @@ int32_t xmrig::Job::nonceOffset() const
|
||||||
auto f = algorithm().family();
|
auto f = algorithm().family();
|
||||||
if (f == Algorithm::KAWPOW) return 32;
|
if (f == Algorithm::KAWPOW) return 32;
|
||||||
if (f == Algorithm::GHOSTRIDER) return 76;
|
if (f == Algorithm::GHOSTRIDER) return 76;
|
||||||
if (f == Algorithm::RX_YADA) return 147;
|
|
||||||
|
auto id = algorithm().id();
|
||||||
|
if (id == Algorithm::RX_YADA) return 147;
|
||||||
|
|
||||||
return 39;
|
return 39;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue