diff options
author | John Newbery <john@johnnewbery.com> | 2017-12-08 11:45:46 -0500 |
---|---|---|
committer | John Newbery <john@johnnewbery.com> | 2017-12-11 09:17:21 -0500 |
commit | 74e64f24b8cb701379b34442f21332361dcc91f9 (patch) | |
tree | 3ee92d07ceebf41e012931c689d74beda27ebe73 /test/functional/p2p-mempool.py | |
parent | 5fc6e71d1994d58c25edebd8063555998752349a (diff) |
[tests] Use network_thread_start() in tests.
Diffstat (limited to 'test/functional/p2p-mempool.py')
-rwxr-xr-x | test/functional/p2p-mempool.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/p2p-mempool.py b/test/functional/p2p-mempool.py index d24dbac51d..168f9f685a 100755 --- a/test/functional/p2p-mempool.py +++ b/test/functional/p2p-mempool.py @@ -21,7 +21,7 @@ class P2PMempoolTests(BitcoinTestFramework): def run_test(self): # Add a p2p connection self.nodes[0].add_p2p_connection(P2PInterface()) - NetworkThread().start() + network_thread_start() self.nodes[0].p2p.wait_for_verack() #request mempool |