Skip to content

Commit

Permalink
Downgraded RNG seed message to -v only
Browse files Browse the repository at this point in the history
Now we read from /dev/random by default, this message isn't really that important anymore.
  • Loading branch information
goodluckart committed Mar 28, 2013
1 parent 7a3dec8 commit 2b166b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion oclvanitygen.c
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ main(int argc, char **argv)
fprintf(stderr, "Could not load RNG seed '%s'\n", seedfile);
return 1;
}
if (verbose > 0) {
if (verbose > 1) {
fprintf(stderr,
"Read %d bytes from RNG seed file\n", opt);
}
Expand Down
2 changes: 1 addition & 1 deletion vanitygen.c
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,7 @@ main(int argc, char **argv)
fprintf(stderr, "Could not load RNG seed '%s'\n", seedfile);
return 1;
}
if (verbose > 0) {
if (verbose > 1) {
fprintf(stderr,
"Read %d bytes from RNG seed file\n", opt);
}
Expand Down

0 comments on commit 2b166b4

Please sign in to comment.