aboutsummaryrefslogtreecommitdiff
path: root/qa
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2016-07-08 17:59:06 +0200
committerMarcoFalke <falke.marco@gmail.com>2016-08-07 23:13:08 +0200
commitfa2d68f79c459b505652728c3d8da60679f98ae3 (patch)
treea94f0719e9621bd716b16de4b9ce4f2c10ddbd69 /qa
parentfae596f0e421148b797197baff089a87b3193dbd (diff)
downloadbitcoin-fa2d68f79c459b505652728c3d8da60679f98ae3.tar.xz
[qa] Adjust timeouts for micro-optimization of run time
Diffstat (limited to 'qa')
-rw-r--r--qa/rpc-tests/test_framework/util.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/qa/rpc-tests/test_framework/util.py b/qa/rpc-tests/test_framework/util.py
index 32fe79efc3..31fa19dd33 100644
--- a/qa/rpc-tests/test_framework/util.py
+++ b/qa/rpc-tests/test_framework/util.py
@@ -121,7 +121,7 @@ def hex_str_to_bytes(hex_str):
def str_to_b64str(string):
return b64encode(string.encode('utf-8')).decode('ascii')
-def sync_blocks(rpc_connections, wait=1, timeout=60):
+def sync_blocks(rpc_connections, wait=0.125, timeout=60):
"""
Wait until everybody has the same tip
"""
@@ -133,7 +133,7 @@ def sync_blocks(rpc_connections, wait=1, timeout=60):
timeout -= wait
raise AssertionError("Block sync failed")
-def sync_mempools(rpc_connections, wait=1, timeout=60):
+def sync_mempools(rpc_connections, wait=0.5, timeout=60):
"""
Wait until everybody has the same transactions in their memory
pools