mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-09 10:43:19 -05:00
1019c39982
Introduces ChainstateManager::GetPruneRange(). The prune budget is split evenly between the number of chainstates, however the prune budget may be exceeded if the resulting shares are beneath `MIN_DISK_SPACE_FOR_BLOCK_FILES`.
357 B
357 B
Pruning
When using assumeutxo with -prune
, the prune budget may be exceeded if it is set
lower than 1100MB (i.e. MIN_DISK_SPACE_FOR_BLOCK_FILES * 2
). Prune budget is normally
split evenly across each chainstate, unless the resulting prune budget per chainstate
is beneath MIN_DISK_SPACE_FOR_BLOCK_FILES
in which case that value will be used.