aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/api/wallet.h
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2016-11-08 22:45:54 +0200
committerRiccardo Spagni <ric@spagni.net>2016-11-08 22:45:54 +0200
commitaf2ceb29fa5c569714b12d97a206759d5184ee78 (patch)
tree42589e81c1e9422a8fd4a069ee22e7458407ecf0 /src/wallet/api/wallet.h
parentMerge pull request #1297 (diff)
parentwallet2_api: add API for tx notes (diff)
downloadmonero-af2ceb29fa5c569714b12d97a206759d5184ee78.tar.xz
Merge pull request #1298
97288a5 wallet2_api: add API for tx notes (moneromooo-monero)
Diffstat (limited to 'src/wallet/api/wallet.h')
-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();