aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/api/wallet2_api.h
diff options
context:
space:
mode:
authordsc <dsc@xmr.pm>2020-09-19 21:43:18 +0200
committerluigi1111 <luigi1111w@gmail.com>2020-11-28 21:48:57 -0600
commitd15719641645c1f410c697f9151fdda146946ef1 (patch)
tree5af8cfbf09510006ef45da4e5a8bb8ecf6633d2f /src/wallet/api/wallet2_api.h
parentMerge pull request #6826 (diff)
downloadmonero-d15719641645c1f410c697f9151fdda146946ef1.tar.xz
Allow tx note edits via TransactionHistory object in wallet/api
Diffstat (limited to 'src/wallet/api/wallet2_api.h')
-rw-r--r--src/wallet/api/wallet2_api.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wallet/api/wallet2_api.h b/src/wallet/api/wallet2_api.h
index e8efc58b8..c871a8068 100644
--- a/src/wallet/api/wallet2_api.h
+++ b/src/wallet/api/wallet2_api.h
@@ -208,6 +208,7 @@ struct TransactionHistory
virtual TransactionInfo * transaction(const std::string &id) const = 0;
virtual std::vector<TransactionInfo*> getAll() const = 0;
virtual void refresh() = 0;
+ virtual void setTxNote(const std::string &txid, const std::string &note) = 0;
};
/**