diff options
author | Riccardo Spagni <ric@spagni.net> | 2017-11-01 11:24:54 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2017-11-01 11:24:54 +0200 |
commit | 32b46c594bc85264b38491b08e7683075b261f15 (patch) | |
tree | fb2314c65470eb2312495e811f1b8489d5e4fc5a /src/wallet/wallet2.h | |
parent | Merge pull request #2659 (diff) | |
parent | fix libwallet api test after api change (diff) | |
download | monero-32b46c594bc85264b38491b08e7683075b261f15.tar.xz |
Merge pull request #2703
d0463312 fix libwallet api test after api change (Jaquee)
a46c1eed Wallet2: Don't throw when subaddress label doesn't exist (Jaquee)
086b7db2 Wallet API: default values for account and subaddr index (Jaquee)
Diffstat (limited to 'src/wallet/wallet2.h')
-rw-r--r-- | src/wallet/wallet2.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h index 7933e0f00..746255fa9 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -467,8 +467,8 @@ namespace tools 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); - std::string get_subaddress_label(const cryptonote::subaddress_index& index) const; // throws when index is out of bound - void set_subaddress_label(const cryptonote::subaddress_index &index, const std::string &label); // throws when index is out of bound + std::string get_subaddress_label(const cryptonote::subaddress_index& index) const; + void set_subaddress_label(const cryptonote::subaddress_index &index, const std::string &label); /*! * \brief Tells if the wallet file is deprecated. */ |