diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-05-01 12:29:12 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-09-17 11:38:23 +0000 |
commit | cc4be4fa15eba582cc6ab529bd0215e642205ad4 (patch) | |
tree | 5f0a42d25ba81d8f909650b3e81b7f80281803c9 /src/wallet/wallet2.h | |
parent | functional_tests: add address book tests (diff) | |
download | monero-cc4be4fa15eba582cc6ab529bd0215e642205ad4.tar.xz |
wallet: add edit_address_book RPC
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 95f6f507a..1469b4c00 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -1098,6 +1098,7 @@ private: */ std::vector<address_book_row> get_address_book() const { return m_address_book; } bool add_address_book_row(const cryptonote::account_public_address &address, const crypto::hash &payment_id, const std::string &description, bool is_subaddress); + bool set_address_book_row(size_t row_id, const cryptonote::account_public_address &address, const crypto::hash &payment_id, const std::string &description, bool is_subaddress); bool delete_address_book_row(std::size_t row_id); uint64_t get_num_rct_outputs(); |