1
0
Fork 0
mirror of https://github.com/eosswedenorg/antelope-keygen synced 2026-06-20 09:56:45 +02:00

Adding key_search_helpers module.

This commit is contained in:
Henrik Hautakoski 2020-01-10 10:28:55 +01:00
parent 77d63a5c36
commit 936378c69f
3 changed files with 44 additions and 0 deletions

View file

@ -0,0 +1,11 @@
#include <iostream>
#include "WIF.h"
#include "key_search_helpers.h"
void key_search_result(const std::string& word, const struct ec_keypair* pair) {
std::cout << "----" << std::endl;
std::cout << "Found: " << word << std::endl;
wif_print_key(pair);
}