diff --git a/test/functional/test_framework/test_framework.py b/test/functional/test_framework/test_framework.py index 7fa95a760..f19584628 100755 --- a/test/functional/test_framework/test_framework.py +++ b/test/functional/test_framework/test_framework.py @@ -94,7 +94,7 @@ def __init__(self): self.nodes = [] self.network_thread = None self.mocktime = 0 - self.rpc_timewait = 60 # Wait for up to 60 seconds for the RPC server to respond + self.rpc_timewait = 90 # Wait for up to 60 seconds for the RPC server to respond self.supports_cli = False self.bind_to_localhost_only = True self.signblockpubkey = "025700236c2890233592fcef262f4520d22af9160e3d9705855140eb2aa06c35d3" diff --git a/test/functional/test_framework/test_node.py b/test/functional/test_framework/test_node.py index c7fdf554c..655d0e54b 100755 --- a/test/functional/test_framework/test_node.py +++ b/test/functional/test_framework/test_node.py @@ -34,7 +34,7 @@ # For Python 3.4 compatibility JSONDecodeError = getattr(json, "JSONDecodeError", ValueError) -BITCOIND_PROC_WAIT_TIMEOUT = 60 +BITCOIND_PROC_WAIT_TIMEOUT = 90 class FailedToStartError(Exception): """Raised when a node fails to start correctly."""