Version 1.3.3
- Add tribus algo
- Add x16r algo
+- Add x16s algo
- Add keccakc variant
Version 1.3.2
* ✓ __x14__ (X14, Webcoin [WEB])
* ✓ __x15__ (RadianceCoin [RCE])
* ✓ __x16r__ (Ravencoin [RVN])
+ * ✓ __x16s__ (Pigeoncoin [PGN])
* ✓ __x17__ (Verge [XVG])
* ✓ __yescrypt__ (GlobalBoostY [BSTY], Unitus [UIS], MyriadCoin [MYR])
* ✓ __zr5__ (Ziftrcoin [ZRC])
static __thread char hashOrder[HASH_FUNC_COUNT + 1] = { 0 };
-static void getAlgoString(const uint32_t* prevblock, char *output)
+static void getAlgoString(const uint8_t* prevblock, char *output)
{
uint8_t* data = (uint8_t*)prevblock;
if (s_ntime != pdata[17]) {
uint32_t ntime = swab32(pdata[17]);
- getAlgoString((const char*) (&endiandata[1]), hashOrder);
+ getAlgoString((const uint8_t*) (&endiandata[1]), hashOrder);
s_ntime = ntime;
if (opt_debug && !thr_id) applog(LOG_DEBUG, "hash order %s (%08x)", hashOrder, ntime);
}
<ClCompile Include="algo\x14.c" />
<ClCompile Include="algo\x15.c" />
<ClCompile Include="algo\x16r.c" />
+ <ClCompile Include="algo\x16s.c" />
<ClCompile Include="algo\x17.c" />
<ClCompile Include="algo\xevan.c" />
<ClCompile Include="algo\yescrypt.c" />
<ClCompile Include="algo\x16r.c">
<Filter>algo</Filter>
</ClCompile>
+ <ClCompile Include="algo\x16s.c">
+ <Filter>algo</Filter>
+ </ClCompile>
<ClCompile Include="algo\x17.c">
<Filter>algo</Filter>
</ClCompile>