diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-11-24 14:49:04 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-11-27 15:45:42 +0000 |
commit | 17b45725af754a3887f0c59bd5c67c58278d71eb (patch) | |
tree | 320c7ce2fc49f5eba4bdeca9263c9e7345ec18e5 /src/blockchain_db/blockchain_db.h | |
parent | Merge pull request #4821 (diff) | |
download | monero-17b45725af754a3887f0c59bd5c67c58278d71eb.tar.xz |
Outputs where all amounts are known spent can now be pruned
Only for pre rct for obvious reasons.
Note: DO NOT use a known spent list which includes outputs
which are not known spent. If the list includes any output
that's just strongly thought to be spent, but not provably
so, you risk finding yourself unable to sync past the point
where that output is spent.
I estimate only 200 MB saved on current mainnet though,
unless the new blackballing rule unearths a good amount of
large-amount-set extra spent outs.
Diffstat (limited to 'src/blockchain_db/blockchain_db.h')
-rw-r--r-- | src/blockchain_db/blockchain_db.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/blockchain_db/blockchain_db.h b/src/blockchain_db/blockchain_db.h index 53e33898a..a8f4eafe0 100644 --- a/src/blockchain_db/blockchain_db.h +++ b/src/blockchain_db/blockchain_db.h @@ -1406,6 +1406,13 @@ public: virtual cryptonote::blobdata get_txpool_tx_blob(const crypto::hash& txid) const = 0; /** + * @brief prune output data for the given amount + * + * @param amount the amount for which to prune data + */ + virtual void prune_outputs(uint64_t amount) = 0; + + /** * @brief runs a function over all txpool transactions * * The subclass should run the passed function for each txpool tx it has |