1
0
Fork 0
mirror of https://github.com/eosswedenorg/antelope-keygen synced 2026-06-18 04:00:03 +02:00

src/main.cpp: use base58_strip() when creating the word list.

This commit is contained in:
Henrik Hautakoski 2020-01-14 10:20:50 +01:00
parent 87647ba1cd
commit e5c096c709

View file

@ -56,7 +56,7 @@ void cmd_search(int argc, char **argv) {
int n = 100;
n_thread_decl;
std::string search(argv[0]);
strlist_t words = strsplitwords(strtolower(search));
strlist_t words = strsplitwords(strtolower(base58_strip(search)));
if (argc > 1) {
n = atoi(argv[1]);