aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Newbery <john@johnnewbery.com>2017-08-23 15:49:01 -0400
committerJohn Newbery <john@johnnewbery.com>2017-09-01 12:25:50 -0400
commitbe2a2ab6a67beef97e3c3cf42bd5eeea6c4e55cf (patch)
treebf16ae0ec6f60e56a43e87af3646df48111abfca
parentaffe9271aa4953ddbceb1bfe4e60838570272c56 (diff)
downloadbitcoin-be2a2ab6a67beef97e3c3cf42bd5eeea6c4e55cf.tar.xz
[tests] fix - use rpc_timeout as rpc timeout
-rwxr-xr-xtest/functional/test_framework/test_node.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/test_framework/test_node.py b/test/functional/test_framework/test_node.py
index a803df5b49..4063f988e8 100755
--- a/test/functional/test_framework/test_node.py
+++ b/test/functional/test_framework/test_node.py
@@ -74,7 +74,7 @@ class TestNode():
for _ in range(poll_per_s * self.rpc_timeout):
assert self.process.poll() is None, "bitcoind exited with status %i during initialization" % self.process.returncode
try:
- 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)
self.rpc.getblockcount()
# If the call to getblockcount() succeeds then the RPC connection is up
self.rpc_connected = True