diff options
| author | MarcoFalke <[email protected]> | 2020-03-02 16:26:49 -0500 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2020-03-02 16:25:05 -0500 |
| commit | fa6df0de538c15a6d393830af373ac9af6f48125 (patch) | |
| tree | 1148da8f049012f33b9a088695cd6adf94d9b1fc /test/functional/feature_block.py | |
| parent | Merge #18168: httpserver: use own HTTP status codes (diff) | |
| download | discoin-fa6df0de538c15a6d393830af373ac9af6f48125.tar.xz discoin-fa6df0de538c15a6d393830af373ac9af6f48125.zip | |
test: Bump timeouts to accomodate really slow disks
Diffstat (limited to 'test/functional/feature_block.py')
| -rwxr-xr-x | test/functional/feature_block.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/functional/feature_block.py b/test/functional/feature_block.py index 95905f477..38bf2faf8 100755 --- a/test/functional/feature_block.py +++ b/test/functional/feature_block.py @@ -1261,7 +1261,7 @@ class FullBlockTest(BitcoinTestFramework): self.save_spendable_output() spend = self.get_spendable_output() - self.send_blocks(blocks, True, timeout=960) + self.send_blocks(blocks, True, timeout=1920) chain1_tip = i # now create alt chain of same length @@ -1273,14 +1273,14 @@ class FullBlockTest(BitcoinTestFramework): # extend alt chain to trigger re-org block = self.next_block("alt" + str(chain1_tip + 1), version=4) - self.send_blocks([block], True, timeout=960) + self.send_blocks([block], True, timeout=1920) # ... and re-org back to the first chain self.move_tip(chain1_tip) block = self.next_block(chain1_tip + 1, version=4) self.send_blocks([block], False, force_send=True) block = self.next_block(chain1_tip + 2, version=4) - self.send_blocks([block], True, timeout=960) + self.send_blocks([block], True, timeout=1920) self.log.info("Reject a block with an invalid block header version") b_v1 = self.next_block('b_v1', version=1) |