diff options
author | Aurèle Oulès <aurele@oules.com> | 2022-11-27 11:03:04 +0100 |
---|---|---|
committer | Aurèle Oulès <aurele@oules.com> | 2022-12-15 09:53:51 +0100 |
commit | 564b580bf07742483a140c7c095b896a6d5d6cad (patch) | |
tree | 8563f2d234fa5341b3d3ba51201a27577472c3bf /test/functional/feature_pruning.py | |
parent | 71d9a7c03b44236c2fea2b74f92a69234d29f717 (diff) |
test: Introduce MIN_BLOCKS_TO_KEEP constant
Diffstat (limited to 'test/functional/feature_pruning.py')
-rwxr-xr-x | test/functional/feature_pruning.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/functional/feature_pruning.py b/test/functional/feature_pruning.py index f01e9a451f..de1ea8a3a6 100755 --- a/test/functional/feature_pruning.py +++ b/test/functional/feature_pruning.py @@ -11,6 +11,7 @@ This test takes 30 mins or more (up to 2 hours) import os from test_framework.blocktools import ( + MIN_BLOCKS_TO_KEEP, create_block, create_coinbase, ) @@ -333,7 +334,7 @@ class PruneTest(BitcoinTestFramework): assert has_block(2), "blk00002.dat is still there, should be pruned by now" # advance the tip so blk00002.dat and blk00003.dat can be pruned (the last 288 blocks should now be in blk00004.dat) - self.generate(node, 288, sync_fun=self.no_op) + self.generate(node, MIN_BLOCKS_TO_KEEP, sync_fun=self.no_op) prune(1000) assert not has_block(2), "blk00002.dat is still there, should be pruned by now" assert not has_block(3), "blk00003.dat is still there, should be pruned by now" |