please don't bother "donating" if your just looking to make more money guys..
i don't want to have to keep going through a ton of explaining to people about mining
..it's VERY complicated stuff and i hate re-explaining ..i'm not good at it
don't forget in the read me i mentioned a new feature i coded --timer
..for benchmarking
edit:
just so people know there is no trickery involved i will copy and paste the submit code..
static void share_result(int result, const char *reason)
{
char s[345];
double hashrate;
int i;
hashrate = 0.;
pthread_mutex_lock(&stats_lock);
for (i = 0; i < opt_n_threads; i++)
hashrate += thr_hashrates[i];
result ? accepted_count++ : rejected_count++;
pthread_mutex_unlock(&stats_lock);
sprintf(s, hashrate >= 1e6 ? "%.0f" : "%.2f", 1e-3 * hashrate);
int logprio = (result ? LOG_WARNING : LOG_ERR);
applog(logprio, "accepted: %lu/%lu (%.2f%%), %s kh/s %s",
accepted_count,
accepted_count + rejected_count,
100. * accepted_count / (accepted_count + rejected_count),
s,
result ? "(good)" : "(bad)");
if (hashrate > Highest_Hash && result == 1) {
Highest_Hash = hashrate;
applog(LOG_INFO, "NEW Highest Hash = %s kh/s", s);
}
if ((opt_debug || opt_hashdebug) && reason)
applog(LOG_DEBUG, "DEBUG: reject reason: %s", reason);
}
what that shows is that it reports what hash speed is reported in console regardless if beta is activated or not.
so in other words it is NOT reporting a higher hash only if bet is activated or some other trickery
PS: Blue means highest submitted share speed.. Green is normal.