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

key_search: refactor key_search_n() and key_search_nt() to proper names.

This commit is contained in:
Henrik Hautakoski 2020-01-10 10:56:32 +01:00
parent a4dec2e39b
commit 6dcc897fcf
5 changed files with 11 additions and 11 deletions

View file

@ -43,12 +43,12 @@
} \
}
#define n_thread_outp << ", Using: " << n_threads << " threads"
#define call_search key_search_nt(words, n, n_threads)
#define call_search key_search_mt(words, n, n_threads)
#else
#define n_thread_decl
#define n_thread_argv
#define n_thread_outp
#define call_search key_search_n(words, n)
#define call_search key_search(words, n)
#endif /* HAVE_THREADS */
void cmd_search(int argc, char **argv) {