mirror of
https://github.com/monero-project/monero.git
synced 2025-07-27 03:25:23 -04:00
wallet2_api: add blackball api
This commit is contained in:
parent
2ab66ff1d4
commit
a7da8208f5
4 changed files with 65 additions and 0 deletions
|
@ -33,6 +33,7 @@
|
|||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <list>
|
||||
#include <set>
|
||||
#include <ctime>
|
||||
#include <iostream>
|
||||
|
@ -756,6 +757,12 @@ struct Wallet
|
|||
*/
|
||||
virtual bool rescanSpent() = 0;
|
||||
|
||||
//! blackballs a set of outputs
|
||||
virtual bool blackballOutputs(const std::vector<std::string> &pubkeys, bool add) = 0;
|
||||
|
||||
//! unblackballs an output
|
||||
virtual bool unblackballOutput(const std::string &pubkey) = 0;
|
||||
|
||||
//! Light wallet authenticate and login
|
||||
virtual bool lightWalletLogin(bool &isNewWallet) const = 0;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue