diff options
| author | Andrew Chow <[email protected]> | 2017-09-05 12:48:58 -0700 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2018-04-26 15:33:11 +0200 |
| commit | 2ae705d84178fb9faa49f92091206e92379a2c63 (patch) | |
| tree | 696da3263cf74554ce09ec79343841a62b4accd7 /test/functional/feature_pruning.py | |
| parent | Merge #12321: p2wsh and p2sh-p2wsh address in decodescript (diff) | |
| download | discoin-2ae705d84178fb9faa49f92091206e92379a2c63.tar.xz discoin-2ae705d84178fb9faa49f92091206e92379a2c63.zip | |
Remove Safe mode
Diffstat (limited to 'test/functional/feature_pruning.py')
| -rwxr-xr-x | test/functional/feature_pruning.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/feature_pruning.py b/test/functional/feature_pruning.py index 3adde8dd7..11a52b9ee 100755 --- a/test/functional/feature_pruning.py +++ b/test/functional/feature_pruning.py @@ -124,7 +124,7 @@ class PruneTest(BitcoinTestFramework): # Reboot node 1 to clear its mempool (hopefully make the invalidate faster) # Lower the block max size so we don't keep mining all our big mempool transactions (from disconnected blocks) self.stop_node(1) - self.start_node(1, extra_args=["-maxreceivebuffer=20000","-blockmaxweight=20000", "-checkblocks=5", "-disablesafemode"]) + self.start_node(1, extra_args=["-maxreceivebuffer=20000","-blockmaxweight=20000", "-checkblocks=5"]) height = self.nodes[1].getblockcount() self.log.info("Current block height: %d" % height) @@ -147,7 +147,7 @@ class PruneTest(BitcoinTestFramework): # Reboot node1 to clear those giant tx's from mempool self.stop_node(1) - self.start_node(1, extra_args=["-maxreceivebuffer=20000","-blockmaxweight=20000", "-checkblocks=5", "-disablesafemode"]) + self.start_node(1, extra_args=["-maxreceivebuffer=20000","-blockmaxweight=20000", "-checkblocks=5"]) self.log.info("Generating new longer chain of 300 more blocks") self.nodes[1].generate(300) |