Merge pull request #4260
a54dbaeeblockchain_blackball: add --force-chain-reaction-pass flag (moneromooo-monero)44439c32record blackballs as amount/offset, and add export ability (moneromooo-monero)4bce935bblockchain_blackball: more optimizations (moneromooo-monero)b66ba783blockchain_blackball: do not process duplicate blockchains parts (moneromooo-monero)639a3c01blockchain_blackball: make it clear secondary passes are not incremental (moneromooo-monero)eb8a51beblockchain_blackball: detect spent outputs by partial ring reuse (moneromooo-monero)d6d276c6blockchain_blackball: fix chain reaction phase in incremental mode (moneromooo-monero)2b2a681bblockchain_blackball: avoid false positives for different amounts (moneromooo-monero)80e4fef3blockchain_blackball: set transaction looping txn to read only (moneromooo-monero)4801d6b5blockchain_blackball: add stats (moneromooo-monero)846190fdblockchain_blackball: support pre-v2 databases (moneromooo-monero)daa6cc7dblockchain_blackball: use LMDB for the cache (moneromooo-monero)50cb370dringdb: allow blackballing many outputs at once (moneromooo-monero)
This commit is contained in:
@@ -1159,10 +1159,10 @@ namespace tools
|
||||
bool set_ring(const crypto::key_image &key_image, const std::vector<uint64_t> &outs, bool relative);
|
||||
bool find_and_save_rings(bool force = true);
|
||||
|
||||
bool blackball_output(const crypto::public_key &output);
|
||||
bool set_blackballed_outputs(const std::vector<crypto::public_key> &outputs, bool add = false);
|
||||
bool unblackball_output(const crypto::public_key &output);
|
||||
bool is_output_blackballed(const crypto::public_key &output) const;
|
||||
bool blackball_output(const std::pair<uint64_t, uint64_t> &output);
|
||||
bool set_blackballed_outputs(const std::vector<std::pair<uint64_t, uint64_t>> &outputs, bool add = false);
|
||||
bool unblackball_output(const std::pair<uint64_t, uint64_t> &output);
|
||||
bool is_output_blackballed(const std::pair<uint64_t, uint64_t> &output) const;
|
||||
|
||||
bool lock_keys_file();
|
||||
bool unlock_keys_file();
|
||||
|
||||
Reference in New Issue
Block a user