aboutsummaryrefslogtreecommitdiff
path: root/test/functional/getblocktemplate_longpoll.py
diff options
context:
space:
mode:
authorJohn Newbery <john@johnnewbery.com>2017-06-02 14:30:36 -0400
committerMarcoFalke <falke.marco@gmail.com>2017-10-03 18:18:17 +0200
commitfc2aa09cf382f024f461e103f2500e95ddb692e5 (patch)
treeb0148b97dda0141ef4fccf84120b74816079cfdd /test/functional/getblocktemplate_longpoll.py
parentfb7b5293844ea6adc5dcf5ad0a0c5890b4495939 (diff)
downloadbitcoin-fc2aa09cf382f024f461e103f2500e95ddb692e5.tar.xz
[tests] Introduce TestNode
TestNode is a class responsible for all state related to a bitcoind node under test. It stores local state, is responsible for tracking the bitcoind process and delegates unrecognised messages to the RPC connection. This commit changes start_nodes and stop_nodes to start and stop the bitcoind nodes in parallel, making test setup and teardown much faster. Github-Pull: #10711 Rebased-From: 7897338918dac072e788b8ab2919d4559f311bef
Diffstat (limited to 'test/functional/getblocktemplate_longpoll.py')
-rwxr-xr-xtest/functional/getblocktemplate_longpoll.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/getblocktemplate_longpoll.py b/test/functional/getblocktemplate_longpoll.py
index bbe1dda5f7..cca30e2688 100755
--- a/test/functional/getblocktemplate_longpoll.py
+++ b/test/functional/getblocktemplate_longpoll.py
@@ -17,7 +17,7 @@ class LongpollThread(threading.Thread):
self.longpollid = templat['longpollid']
# create a new connection to the node, we can't use the same
# connection from two threads
- self.node = get_rpc_proxy(node.url, 1, timeout=600)
+ self.node = get_rpc_proxy(node.url, 1, timeout=600, coveragedir=node.coverage_dir)
def run(self):
self.node.getblocktemplate({'longpollid':self.longpollid})