wallet2_api: blackball/unblackball now take two parameters

amount and offset (instead of pubkey)
This commit is contained in:
moneromooo-monero
2018-09-30 08:10:30 +00:00
parent 83d8f03c23
commit 6da36ea057
3 changed files with 28 additions and 2 deletions
+4 -1
View File
@@ -881,7 +881,10 @@ struct Wallet
virtual bool rescanSpent() = 0;
//! blackballs a set of outputs
virtual bool blackballOutputs(const std::vector<std::string> &pubkeys, bool add) = 0;
virtual bool blackballOutputs(const std::vector<std::string> &outputs, bool add) = 0;
//! blackballs an output
virtual bool blackballOutput(const std::string &amount, const std::string &offset) = 0;
//! unblackballs an output
virtual bool unblackballOutput(const std::string &amount, const std::string &offset) = 0;