1
0
mirror of https://github.com/GOSTSec/vanitygen synced 2025-02-07 04:14:15 +00:00

Fix units of "value"

Units of BTC/MkeyHr are meaningless. Change them to BTC/Mkey (expected
earnings per million keys generated).
This commit is contained in:
fizzisist 2012-10-18 10:02:50 -07:00
parent 8516fa63a1
commit 9626e3a428

View File

@ -319,7 +319,7 @@ server_workitem_new(server_request_t *reqp,
wip->addrtype = addrtype; wip->addrtype = addrtype;
wip->difficulty = difficulty; wip->difficulty = difficulty;
wip->reward = reward; wip->reward = reward;
wip->value = (reward * 1000000.0 * 3600.0) / difficulty; wip->value = (reward * 1000000.0) / difficulty;
return wip; return wip;
} }
@ -554,13 +554,13 @@ dump_work(avl_root_t *work)
wip != NULL; wip != NULL;
wip = workitem_avl_next(wip)) { wip = workitem_avl_next(wip)) {
printf("Pattern: \"%s\" Reward: %f " printf("Pattern: \"%s\" Reward: %f "
"Value: %f BTC/MkeyHr\n", "Value: %f BTC/Mkey\n",
wip->pattern, wip->pattern,
wip->reward, wip->reward,
wip->value); wip->value);
} }
if (pbatch->nitems > 1) if (pbatch->nitems > 1)
printf("Batch of %d, total value: %f BTC/MkeyHr\n", printf("Batch of %d, total value: %f BTC/Mkey\n",
pbatch->nitems, pbatch->total_value); pbatch->nitems, pbatch->total_value);
} }
} }
@ -1022,7 +1022,7 @@ main(int argc, char **argv)
wip = workitem_avl_next(wip)) { wip = workitem_avl_next(wip)) {
fprintf(stderr, fprintf(stderr,
"Searching for pattern: \"%s\" " "Searching for pattern: \"%s\" "
"Reward: %f Value: %f BTC/MkeyHr\n", "Reward: %f Value: %f BTC/Mkey\n",
wip->pattern, wip->pattern,
wip->reward, wip->reward,
wip->value); wip->value);