aboutsummaryrefslogtreecommitdiff
path: root/qa
diff options
context:
space:
mode:
authorMatt Corallo <git@bluematt.me>2016-06-21 16:28:38 -0700
committerPieter Wuille <pieter.wuille@gmail.com>2016-10-17 16:44:57 +0200
commitfe998e962dc015978f104b782afb7daec3c4d4df (patch)
treeb9b4c1e3ba1e107db8a0d0f3b3e52ad02c2a3915 /qa
parent02a337defdd854efc78ecba6d1fb19cb1c075f16 (diff)
downloadbitcoin-fe998e962dc015978f104b782afb7daec3c4d4df.tar.xz
More agressively filter compact block requests
Unit test adaptations by Pieter Wuille.
Diffstat (limited to 'qa')
-rwxr-xr-xqa/rpc-tests/p2p-compactblocks.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/qa/rpc-tests/p2p-compactblocks.py b/qa/rpc-tests/p2p-compactblocks.py
index 131654c333..a24066b077 100755
--- a/qa/rpc-tests/p2p-compactblocks.py
+++ b/qa/rpc-tests/p2p-compactblocks.py
@@ -591,7 +591,7 @@ class CompactBlocksTest(BitcoinTestFramework):
def test_getblocktxn_handler(self, node, test_node, version):
# bitcoind won't respond for blocks whose height is more than 15 blocks
# deep.
- MAX_GETBLOCKTXN_DEPTH = 15
+ MAX_GETBLOCKTXN_DEPTH = 10
chain_height = node.getblockcount()
current_height = chain_height
while (current_height >= chain_height - MAX_GETBLOCKTXN_DEPTH):
@@ -632,7 +632,7 @@ class CompactBlocksTest(BitcoinTestFramework):
def test_compactblocks_not_at_tip(self, node, test_node):
# Test that requesting old compactblocks doesn't work.
- MAX_CMPCTBLOCK_DEPTH = 11
+ MAX_CMPCTBLOCK_DEPTH = 6
new_blocks = []
for i in range(MAX_CMPCTBLOCK_DEPTH):
test_node.clear_block_announcement()