Skip to content

Commit 35f64e4

Browse files
committed
Revert "[qa] Adjust timeouts for micro-optimization of run time"
This reverts commit fa2d68f. Temporary revert - see discussion in #8532.
1 parent 671fdae commit 35f64e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

qa/rpc-tests/test_framework/util.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ def hex_str_to_bytes(hex_str):
121121
def str_to_b64str(string):
122122
return b64encode(string.encode('utf-8')).decode('ascii')
123123

124-
def sync_blocks(rpc_connections, wait=0.125, timeout=60):
124+
def sync_blocks(rpc_connections, wait=1, timeout=60):
125125
"""
126126
Wait until everybody has the same tip
127127
"""
@@ -133,7 +133,7 @@ def sync_blocks(rpc_connections, wait=0.125, timeout=60):
133133
timeout -= wait
134134
raise AssertionError("Block sync failed")
135135

136-
def sync_mempools(rpc_connections, wait=0.5, timeout=60):
136+
def sync_mempools(rpc_connections, wait=1, timeout=60):
137137
"""
138138
Wait until everybody has the same transactions in their memory
139139
pools

0 commit comments

Comments
 (0)