From cf436cde1a480eddcdee7a0e68ddeea40ba93942 Mon Sep 17 00:00:00 2001 From: Riccardo Spagni Date: Tue, 2 Oct 2018 22:38:09 +0200 Subject: Merge pull request #4475 6da36ea0 wallet2_api: blackball/unblackball now take two parameters (moneromooo-monero) --- src/wallet/api/wallet2_api.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/wallet/api/wallet2_api.h') diff --git a/src/wallet/api/wallet2_api.h b/src/wallet/api/wallet2_api.h index e0d491705..68ea26262 100644 --- a/src/wallet/api/wallet2_api.h +++ b/src/wallet/api/wallet2_api.h @@ -881,7 +881,10 @@ struct Wallet virtual bool rescanSpent() = 0; //! blackballs a set of outputs - virtual bool blackballOutputs(const std::vector &pubkeys, bool add) = 0; + virtual bool blackballOutputs(const std::vector &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; -- cgit v1.2.3