aboutsummaryrefslogtreecommitdiff
path: root/tests/unit_tests
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2018-11-24 14:49:04 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2018-11-27 15:45:42 +0000
commit17b45725af754a3887f0c59bd5c67c58278d71eb (patch)
tree320c7ce2fc49f5eba4bdeca9263c9e7345ec18e5 /tests/unit_tests
parentMerge pull request #4821 (diff)
downloadmonero-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 'tests/unit_tests')
-rw-r--r--tests/unit_tests/testdb.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/unit_tests/testdb.h b/tests/unit_tests/testdb.h
index a9c772920..5d9ba5833 100644
--- a/tests/unit_tests/testdb.h
+++ b/tests/unit_tests/testdb.h
@@ -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) {}
};