Skip to content

Commit c2469c0

Browse files
committed
WIP
1 parent c316992 commit c2469c0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/functional/feature_block.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -761,7 +761,7 @@ def run_test(self):
761761
self.send_blocks([b56p2], success=False, reject_reason='bad-txns-duplicate', reconnect=True)
762762

763763
self.move_tip("57p2")
764-
self.send_blocks([b57p2], True)
764+
self.send_blocks([b57p2], True, timeout=180)
765765

766766
self.move_tip(57)
767767
self.send_blocks([b57], False) # The tip is not updated because 57p2 seen first

test/functional/test_framework/test_framework.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,7 @@ def cache_path(*paths):
532532

533533
os.rmdir(cache_path('wallets')) # Remove empty wallets dir
534534
for entry in os.listdir(cache_path()):
535-
if entry not in ['chainstate', 'blocks']: # Only keep chainstate and blocks folder
535+
if entry not in ['chainstate', 'blocks', 'indexes']: # Only indexes, chainstate and blocks folders
536536
os.remove(cache_path(entry))
537537

538538
for i in range(self.num_nodes):

0 commit comments

Comments
 (0)