We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent affe927 commit be2a2abCopy full SHA for be2a2ab
test/functional/test_framework/test_node.py
@@ -74,7 +74,7 @@ def wait_for_rpc_connection(self):
74
for _ in range(poll_per_s * self.rpc_timeout):
75
assert self.process.poll() is None, "bitcoind exited with status %i during initialization" % self.process.returncode
76
try:
77
- self.rpc = get_rpc_proxy(rpc_url(self.datadir, self.index, self.rpchost), self.index, coveragedir=self.coverage_dir)
+ self.rpc = get_rpc_proxy(rpc_url(self.datadir, self.index, self.rpchost), self.index, timeout=self.rpc_timeout, coveragedir=self.coverage_dir)
78
self.rpc.getblockcount()
79
# If the call to getblockcount() succeeds then the RPC connection is up
80
self.rpc_connected = True
0 commit comments