wallet_api: add scanTransactions function

This commit is contained in:
selsta
2022-05-26 03:51:31 +02:00
parent 97271b7d20
commit de2f0d0102
3 changed files with 44 additions and 0 deletions
+7
View File
@@ -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;