diff options
author | dsc <dsc@xmr.pm> | 2020-09-19 21:43:18 +0200 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2020-11-28 21:48:57 -0600 |
commit | d15719641645c1f410c697f9151fdda146946ef1 (patch) | |
tree | 5af8cfbf09510006ef45da4e5a8bb8ecf6633d2f /src/wallet/api/transaction_history.h | |
parent | Merge pull request #6826 (diff) | |
download | monero-d15719641645c1f410c697f9151fdda146946ef1.tar.xz |
Allow tx note edits via TransactionHistory object in wallet/api
Diffstat (limited to '')
-rw-r--r-- | src/wallet/api/transaction_history.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wallet/api/transaction_history.h b/src/wallet/api/transaction_history.h index 8f3805788..60f12d771 100644 --- a/src/wallet/api/transaction_history.h +++ b/src/wallet/api/transaction_history.h @@ -45,6 +45,7 @@ public: virtual TransactionInfo * transaction(const std::string &id) const; virtual std::vector<TransactionInfo*> getAll() const; virtual void refresh(); + virtual void setTxNote(const std::string &txid, const std::string ¬e); private: |