diff options
author | dsc <dsc@xmr.pm> | 2020-09-19 21:43:18 +0200 |
---|---|---|
committer | selsta <selsta@sent.at> | 2021-04-22 04:32:14 +0200 |
commit | 153d08d026c0d09b57a78521d3c4d7f229c58a99 (patch) | |
tree | 13d7063aacea86872fa7a299e5e9f71abb5a2a52 /src/wallet/api/wallet2_api.h | |
parent | wallet_api: TransactionHistory - fill unconfirmed out payments dests (diff) | |
download | monero-153d08d026c0d09b57a78521d3c4d7f229c58a99.tar.xz |
Allow tx note edits via TransactionHistory object in wallet/api
Diffstat (limited to '')
-rw-r--r-- | src/wallet/api/wallet2_api.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wallet/api/wallet2_api.h b/src/wallet/api/wallet2_api.h index cf48d1dd1..44928a422 100644 --- a/src/wallet/api/wallet2_api.h +++ b/src/wallet/api/wallet2_api.h @@ -210,6 +210,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 ¬e) = 0; }; /** |