Move parse_subaddress_lookahead() from simplewallet.cpp to util.cpp

This commit is contained in:
stoffu 2018-06-04 16:54:35 +09:00
parent 8fc0cdb96f
commit 248310de06
No known key found for this signature in database
GPG key ID: 41DAB8343A9EC012
3 changed files with 24 additions and 14 deletions

View file

@ -32,6 +32,7 @@
#include <boost/thread/locks.hpp>
#include <boost/thread/mutex.hpp>
#include <boost/optional.hpp>
#include <system_error>
#include <csignal>
#include <cstdio>
@ -214,4 +215,6 @@ namespace tools
bool sha256sum(const std::string &filename, crypto::hash &hash);
bool is_hdd(const char *path);
boost::optional<std::pair<uint32_t, uint32_t>> parse_subaddress_lookahead(const std::string& str);
}