Browse Source

Display the total solved blocks on exit (LOL if you're lucky).

nfactor-troky
Con Kolivas 13 years ago
parent
commit
a37b827e6a
  1. 4
      main.c

4
main.c

@ -265,6 +265,7 @@ static int total_accepted, total_rejected;
static int total_getworks, total_stale, total_discarded; static int total_getworks, total_stale, total_discarded;
static int total_queued; static int total_queued;
static unsigned int new_blocks; static unsigned int new_blocks;
static unsigned int found_blocks;
static unsigned int local_work; static unsigned int local_work;
static unsigned int total_go, total_ro; static unsigned int total_go, total_ro;
@ -2212,6 +2213,8 @@ static bool submit_upstream_work(const struct work *work)
if (!QUIET) { if (!QUIET) {
isblock = regeneratehash(work); isblock = regeneratehash(work);
if (isblock)
found_blocks++;
hash32 = (uint32_t *)(work->hash); hash32 = (uint32_t *)(work->hash);
sprintf(hashshow, "%08lx.%08lx.%08lx%s", sprintf(hashshow, "%08lx.%08lx.%08lx%s",
(unsigned long)(hash32[7]), (unsigned long)(hash32[6]), (unsigned long)(hash32[5]), (unsigned long)(hash32[7]), (unsigned long)(hash32[6]), (unsigned long)(hash32[5]),
@ -5064,6 +5067,7 @@ static void print_summary(void)
applog(LOG_WARNING, "Runtime: %d hrs : %d mins : %d secs", hours, mins, secs); applog(LOG_WARNING, "Runtime: %d hrs : %d mins : %d secs", hours, mins, secs);
if (total_secs) if (total_secs)
applog(LOG_WARNING, "Average hashrate: %.1f Megahash/s", total_mhashes_done / total_secs); applog(LOG_WARNING, "Average hashrate: %.1f Megahash/s", total_mhashes_done / total_secs);
applog(LOG_WARNING, "Solved blocks: %d", found_blocks);
applog(LOG_WARNING, "Queued work requests: %d", total_getworks); applog(LOG_WARNING, "Queued work requests: %d", total_getworks);
applog(LOG_WARNING, "Share submissions: %d", total_accepted + total_rejected); applog(LOG_WARNING, "Share submissions: %d", total_accepted + total_rejected);
applog(LOG_WARNING, "Accepted shares: %d", total_accepted); applog(LOG_WARNING, "Accepted shares: %d", total_accepted);

Loading…
Cancel
Save