[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.
This commit is contained in:
John Newbery
2017-04-13 11:48:02 -04:00
parent b44adf9234
commit 5f4bcf28ef
3 changed files with 1 additions and 95 deletions

View File

@@ -59,7 +59,7 @@ thread.)
* RPC calls are available in p2p tests.
* Can be used to write free-form tests, where specific p2p-protocol behavior
is tested. Examples: ```p2p-accept-block.py```, ```maxblocksinflight.py```.
is tested. Examples: ```p2p-accept-block.py```, ```p2p-compactblocks.py```.
## Comptool