diff options
author | John Newbery <john@johnnewbery.com> | 2017-04-13 11:48:02 -0400 |
---|---|---|
committer | John Newbery <john@johnnewbery.com> | 2017-04-13 11:48:02 -0400 |
commit | 5f4bcf28ef8a1b775b12c9ff06367fd6656e91c3 (patch) | |
tree | f1ec57edb06f3552be47583bc4612fab2b645651 /test/functional/test_runner.py | |
parent | b44adf92342ad4f9c343ba29c081a91687932936 (diff) |
[tests] Remove maxblocksinflight testcase
maxblocksinflight tested that a node would not send get_data messages
for more than 16 new blocks at the same time. bitcoin core no longer
responds to block invs with get_data, since it does headers-first
sync'ing. This test was therefore testing nothing and can be removed.
the sendheaders test script tests that bitcoin will not send get_headers
for more than 16 blocks simultaneously.
Diffstat (limited to 'test/functional/test_runner.py')
-rwxr-xr-x | test/functional/test_runner.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/functional/test_runner.py b/test/functional/test_runner.py index bb12328ec1..722b3326ca 100755 --- a/test/functional/test_runner.py +++ b/test/functional/test_runner.py @@ -135,7 +135,6 @@ EXTENDED_SCRIPTS = [ 'txn_clone.py --mineblock', 'forknotify.py', 'invalidateblock.py', - 'maxblocksinflight.py', 'p2p-acceptblock.py', 'replace-by-fee.py', ] |