diff options
author | stoffu <stoffu@protonmail.ch> | 2018-03-16 13:11:45 +0900 |
---|---|---|
committer | cslashm <cslashm@gmail.com> | 2018-03-16 18:00:28 +0100 |
commit | b86f1e5dad3d5a9a07f3b6184802e5938afa57db (patch) | |
tree | d2665e8ba098f8cd80899526d846ad6ae02b1c96 /src/simplewallet/simplewallet.h | |
parent | Merge pull request #3416 (diff) | |
download | monero-b86f1e5dad3d5a9a07f3b6184802e5938afa57db.tar.xz |
Add command line option allowing to restrict the default sub-address lookahead in order to avoid
so looooong time of set-up when creating a HW based wallet.
Diffstat (limited to 'src/simplewallet/simplewallet.h')
-rw-r--r-- | src/simplewallet/simplewallet.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/simplewallet/simplewallet.h b/src/simplewallet/simplewallet.h index c69df817d..b2630c75e 100644 --- a/src/simplewallet/simplewallet.h +++ b/src/simplewallet/simplewallet.h @@ -135,6 +135,7 @@ namespace cryptonote bool set_auto_low_priority(const std::vector<std::string> &args = std::vector<std::string>()); bool set_segregate_pre_fork_outputs(const std::vector<std::string> &args = std::vector<std::string>()); bool set_key_reuse_mitigation2(const std::vector<std::string> &args = std::vector<std::string>()); + bool set_subaddress_lookahead(const std::vector<std::string> &args = std::vector<std::string>()); bool help(const std::vector<std::string> &args = std::vector<std::string>()); bool start_mining(const std::vector<std::string> &args); bool stop_mining(const std::vector<std::string> &args); @@ -320,6 +321,7 @@ namespace cryptonote std::string m_generate_from_json; std::string m_mnemonic_language; std::string m_import_path; + std::string m_subaddress_lookahead; std::string m_electrum_seed; // electrum-style seed parameter |