diff options
author | Riccardo Spagni <ric@spagni.net> | 2018-03-17 16:49:34 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2018-03-17 16:49:34 +0200 |
commit | 1e2fd27189e17599501fba1e87fd24ebf4aa6338 (patch) | |
tree | d2665e8ba098f8cd80899526d846ad6ae02b1c96 /src/simplewallet/simplewallet.h | |
parent | Merge pull request #3416 (diff) | |
parent | Add command line option allowing to restrict the default sub-address lookahea... (diff) | |
download | monero-1e2fd27189e17599501fba1e87fd24ebf4aa6338.tar.xz |
Merge pull request #3412
b86f1e5d 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. (stoffu)
Diffstat (limited to '')
-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 |