commit 51809c6993997d22928943eddbd3e9c3a32ab5fb
parent 4d5e59157181810fa52c2f5f366d57507cf4c970
Author: NicholasFarrow <nicholas.w.farrow@gmail.com>
Date: Thu, 23 Jan 2020 02:30:07 +1100
remove garbage comment
Diffstat:
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/niceBit.c b/niceBit.c
@@ -83,7 +83,7 @@ int check_vanity(unsigned char *pubaddress) {
/* For each vanity length
* ('len' digits in a row)
*/
- for(int len=10; len>3; len--) {
+ for(int len=10; len>4; len--) {
/* For each digit 1-9 */
for(int i=0; i<10; i++) {
@@ -102,8 +102,6 @@ int check_vanity(unsigned char *pubaddress) {
/* End string with null char*/
compstr[j] = '\0';
- /*printf("Here is that string... %s\n", compstr);*/
-
/* Check if string in pubaddress */
if(strstr(pubaddress, compstr) != NULL) {
printf("Found : %s\n", compstr);