aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/api/wallet.h
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2016-11-05 20:53:45 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2016-11-05 21:19:08 +0000
commit97288a5ce21cedc6d040fe2f7b858e3a1736dc6e (patch)
treecc68df1e7d39fb253d5a5497361c07e169a6e740 /src/wallet/api/wallet.h
parentMerge pull request #1272 (diff)
downloadmonero-97288a5ce21cedc6d040fe2f7b858e3a1736dc6e.tar.xz
wallet2_api: add API for tx notes
Diffstat (limited to '')
-rw-r--r--src/wallet/api/wallet.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wallet/api/wallet.h b/src/wallet/api/wallet.h
index c8a59f7c3..69c27b035 100644
--- a/src/wallet/api/wallet.h
+++ b/src/wallet/api/wallet.h
@@ -97,6 +97,8 @@ public:
virtual void setListener(WalletListener * l);
virtual uint32_t defaultMixin() const;
virtual void setDefaultMixin(uint32_t arg);
+ virtual bool setUserNote(const std::string &txid, const std::string &note);
+ virtual std::string getUserNote(const std::string &txid) const;
private:
void clearStatus();