mirror of
https://github.com/monero-project/monero.git
synced 2025-07-27 03:25:23 -04:00
wallet2_api: add ring api
This commit is contained in:
parent
d32ef7b0f2
commit
b057a21d56
3 changed files with 46 additions and 0 deletions
|
@ -763,6 +763,12 @@ struct Wallet
|
|||
//! unblackballs an output
|
||||
virtual bool unblackballOutput(const std::string &pubkey) = 0;
|
||||
|
||||
//! gets the ring used for a key image, if any
|
||||
virtual bool getRing(const std::string &key_image, std::vector<uint64_t> &ring) const = 0;
|
||||
|
||||
//! sets the ring used for a key image
|
||||
virtual bool setRing(const std::string &key_image, const std::vector<uint64_t> &ring, bool relative) = 0;
|
||||
|
||||
//! Light wallet authenticate and login
|
||||
virtual bool lightWalletLogin(bool &isNewWallet) const = 0;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue