mirror of
https://github.com/monero-project/monero.git
synced 2025-12-23 15:38:10 -08:00
wallet_api: txkey checking functions for the GUI
This commit is contained in:
committed by
moneromooo-monero
parent
d51f1af75f
commit
af8a2600aa
@@ -400,6 +400,19 @@ struct WalletManager
|
||||
*/
|
||||
virtual std::vector<std::string> findWallets(const std::string &path) = 0;
|
||||
|
||||
/*!
|
||||
* \brief checkPayment - checks a payment was made using a txkey
|
||||
* \param address - the address the payment was sent to
|
||||
* \param txid - the transaction id for that payment
|
||||
* \param txkey - the transaction's secret key
|
||||
* \param daemon_address - the address (host and port) to the daemon to request transaction data
|
||||
* \param received - if succesful, will hold the amount of monero received
|
||||
* \param height - if succesful, will hold the height of the transaction (0 if only in the pool)
|
||||
* \param error - if unsuccesful, will hold an error string with more information about the error
|
||||
* \return - true is succesful, false otherwise
|
||||
*/
|
||||
virtual bool checkPayment(const std::string &address, const std::string &txid, const std::string &txkey, const std::string &daemon_address, uint64_t &received, uint64_t &height, std::string &error) const = 0;
|
||||
|
||||
//! returns verbose error string regarding last error;
|
||||
virtual std::string errorString() const = 0;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user