Merge pull request #4901

a48f2dab blockchain_prune_known_spent_data: blackball file is now optional (moneromooo-monero)
17b45725 Outputs where all amounts are known spent can now be pruned (moneromooo-monero)
This commit is contained in:
Riccardo Spagni 2018-12-12 11:57:31 +02:00
commit d855f9bb92
No known key found for this signature in database
GPG key ID: 55432DF31CCD4FCD
6 changed files with 414 additions and 4 deletions

View file

@ -142,5 +142,6 @@ public:
virtual bool prune_blockchain(uint32_t pruning_seed = 0) { return true; }
virtual bool update_pruning() { return true; }
virtual bool check_pruning() { return true; }
virtual void prune_outputs(uint64_t amount) {}
};