diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2020-03-19 17:27:19 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2020-04-07 16:25:01 +0000 |
commit | 69b5992296cfcc0a362cf176143a567d1c2680af (patch) | |
tree | 96324252a126925247a8d64dae6473fce2e5e777 /src/wallet/wallet2.h | |
parent | Merge pull request #6388 (diff) | |
download | monero-69b5992296cfcc0a362cf176143a567d1c2680af.tar.xz |
simplewallet: new "address one-off <major> <minor>" command
Diffstat (limited to '')
-rw-r--r-- | src/wallet/wallet2.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h index 8ecc4d8fa..707b35e13 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -793,6 +793,7 @@ private: size_t get_num_subaddresses(uint32_t index_major) const { return index_major < m_subaddress_labels.size() ? m_subaddress_labels[index_major].size() : 0; } void add_subaddress(uint32_t index_major, const std::string& label); // throws when index is out of bound void expand_subaddresses(const cryptonote::subaddress_index& index); + void create_one_off_subaddress(const cryptonote::subaddress_index& index); std::string get_subaddress_label(const cryptonote::subaddress_index& index) const; void set_subaddress_label(const cryptonote::subaddress_index &index, const std::string &label); void set_subaddress_lookahead(size_t major, size_t minor); |