Skip to content

Commit

Permalink
Fix funcs being public
Browse files Browse the repository at this point in the history
  • Loading branch information
zpalmtree committed Feb 11, 2018
1 parent da1e4c6 commit 43b6d42
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/SimpleWallet/SimpleWallet.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,7 @@ namespace CryptoNote
simple_wallet(System::Dispatcher& dispatcher, const CryptoNote::Currency& currency, Logging::LoggerManager& log);

bool init(const boost::program_options::variables_map& vm);
std::string generate_mnemonic(Crypto::SecretKey &);
void log_incorrect_words(std::vector<std::string>);
bool is_valid_mnemonic(std::string &, Crypto::SecretKey &);
bool deinit();
bool deinit();
bool run();
void stop();

Expand Down Expand Up @@ -99,6 +96,9 @@ bool new_wallet(Crypto::SecretKey &secret_key, Crypto::SecretKey &view_key, cons
bool set_log(const std::vector<std::string> &args);

bool ask_wallet_create_if_needed();
std::string generate_mnemonic(Crypto::SecretKey &);
void log_incorrect_words(std::vector<std::string>);
bool is_valid_mnemonic(std::string &, Crypto::SecretKey &);

void printConnectionError() const;

Expand Down

0 comments on commit 43b6d42

Please sign in to comment.