Skip to content

Commit

Permalink
Merge pull request #14 from fizzisist/master
Browse files Browse the repository at this point in the history
Display meaningful "value" in oclvanityminer
  • Loading branch information
samr7 committed Oct 24, 2012
2 parents 8516fa6 + 9981bbe commit cd1a728
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions oclvanityminer.c
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ server_workitem_new(server_request_t *reqp,
wip->addrtype = addrtype;
wip->difficulty = difficulty;
wip->reward = reward;
wip->value = (reward * 1000000.0 * 3600.0) / difficulty;
wip->value = (reward * 1000000000.0) / difficulty;

return wip;
}
Expand Down Expand Up @@ -554,13 +554,13 @@ dump_work(avl_root_t *work)
wip != NULL;
wip = workitem_avl_next(wip)) {
printf("Pattern: \"%s\" Reward: %f "
"Value: %f BTC/MkeyHr\n",
"Value: %f BTC/Gkey\n",
wip->pattern,
wip->reward,
wip->value);
}
if (pbatch->nitems > 1)
printf("Batch of %d, total value: %f BTC/MkeyHr\n",
printf("Batch of %d, total value: %f BTC/Gkey\n",
pbatch->nitems, pbatch->total_value);
}
}
Expand Down Expand Up @@ -802,6 +802,7 @@ main(int argc, char **argv)
int res;
int thread_started = 0;
pubkeybatch_t *active_pkb = NULL;
float active_pkb_value = 0;

server_context_t *scp = NULL;
pubkeybatch_t *pkb;
Expand Down Expand Up @@ -1016,13 +1017,14 @@ main(int argc, char **argv)
} else if (!active_pkb) {
workitem_t *wip;
was_sleeping = 0;
active_pkb_value = 0;
vcp->vc_pubkey_base = pkb->pubkey;
for (wip = workitem_avl_first(&pkb->items);
wip != NULL;
wip = workitem_avl_next(wip)) {
fprintf(stderr,
"Searching for pattern: \"%s\" "
"Reward: %f Value: %f BTC/MkeyHr\n",
"Reward: %f Value: %f BTC/Gkey\n",
wip->pattern,
wip->reward,
wip->value);
Expand All @@ -1033,9 +1035,16 @@ main(int argc, char **argv)
fprintf(stderr,
"WARNING: could not add pattern\n");
}
else {
active_pkb_value += wip->value;
}

assert(vcp->vc_npatterns);
}

fprintf(stderr,
"\nTotal value for current work: %f BTC/Gkey\n",
active_pkb_value);
res = vg_context_start_threads(vcp);
if (res)
return 1;
Expand Down

0 comments on commit cd1a728

Please sign in to comment.