From e5c096c709957b343822a9c1b2b1b41accda7db6 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Tue, 14 Jan 2020 10:20:50 +0100 Subject: [PATCH] src/main.cpp: use base58_strip() when creating the word list. --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index a736f07..ffa54da 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -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]);