diff options
author | selsta <selsta@sent.at> | 2022-05-26 03:43:54 +0200 |
---|---|---|
committer | selsta <selsta@sent.at> | 2022-05-26 03:51:31 +0200 |
commit | de2f0d010252ad1abf0f0c8ca9e32d81817c80ab (patch) | |
tree | 088303615df316fe9d75778546eaf50f62bdd867 /src/wallet/api/wallet2_api.h | |
parent | Merge pull request #8349 (diff) | |
download | monero-de2f0d010252ad1abf0f0c8ca9e32d81817c80ab.tar.xz |
wallet_api: add scanTransactions function
Diffstat (limited to 'src/wallet/api/wallet2_api.h')
-rw-r--r-- | src/wallet/api/wallet2_api.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/wallet/api/wallet2_api.h b/src/wallet/api/wallet2_api.h index c6f81f0e4..b67bce60c 100644 --- a/src/wallet/api/wallet2_api.h +++ b/src/wallet/api/wallet2_api.h @@ -927,6 +927,13 @@ struct Wallet */ virtual bool importOutputs(const std::string &filename) = 0; + /*! + * \brief scanTransactions - scan a list of transaction ids, this operation may reveal the txids to the remote node and affect your privacy + * \param txids - list of transaction ids + * \return - true on success + */ + virtual bool scanTransactions(const std::vector<std::string> &txids) = 0; + virtual TransactionHistory * history() = 0; virtual AddressBook * addressBook() = 0; virtual Subaddress * subaddress() = 0; |