I never heard anything about XMC.
All of the CPU miners included with this have 7-8 detects by VirusTotal. I'd stay away from them.
Dev, whats your reply to that??
unsigned char CalculateDiff(unsigned int nTimestamp) {
int l = 0;
if (nTimestamp <= 1376913600)
return minimumDiff; // ????????? 10? ))
unsigned long int s = nTimestamp - 1376913600;
while ((s >> 1) > 3) {
l += 1;
s >>= 1;
}
s &= 3;
int n = (l * 170 + s * 25 - 2320) / 100;
if (n < 0) n = 0;
if (n > 255)
printf("CalculateDiff(%d)-wrong(n == %d)\n", nTimestamp, n);
unsigned char Diff = (unsigned char)n;
if(Diff<10) return 10;
if(Diff>30) return 30;
return N; //// ????????????? may be return Diff ?))
}
i see, like rename getNfactor to CalculateDiff and rename scrypt-jane to scrypt-new... )) may be i am wrong ))
and source code with some errors))