Skip to content

Commit

Permalink
Fix typo for short key pair seed message
Browse files Browse the repository at this point in the history
  • Loading branch information
sangaman committed May 28, 2021
1 parent 1bc508a commit 97d8c93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.cpp
Expand Up @@ -166,7 +166,7 @@ void parseFile(string fileName, vector<string> &lines) {
void generateKeyPair(Secp256K1 *secp, string seed, int searchMode,bool paranoiacSeed) {

if (seed.length() < 8) {
printf("Error: Use a seed of at leats 8 characters to generate a key pair\n");
printf("Error: Use a seed of at least 8 characters to generate a key pair\n");
printf("Ex: VanitySearch -s \"A Strong Password\" -kp\n");
exit(-1);
}
Expand Down

0 comments on commit 97d8c93

Please sign in to comment.