diff options
| author | MarcoFalke <[email protected]> | 2016-05-14 13:01:31 +0200 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2016-05-15 12:58:53 +0200 |
| commit | fac93497986b5f74716383bf26c78406253c625a (patch) | |
| tree | 10656400cfb00351ed99475fbf98eff13d4e4d9a /qa/rpc-tests/httpbasics.py | |
| parent | Merge #8046: [Qt][OSX] Fix Cmd-Q / Menu Quit shutdown on OSX (diff) | |
| download | discoin-fac93497986b5f74716383bf26c78406253c625a.tar.xz discoin-fac93497986b5f74716383bf26c78406253c625a.zip | |
[qa] Remove hardcoded "4 nodes" from test_framework
Diffstat (limited to 'qa/rpc-tests/httpbasics.py')
| -rwxr-xr-x | qa/rpc-tests/httpbasics.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/qa/rpc-tests/httpbasics.py b/qa/rpc-tests/httpbasics.py index c62edc8e1..10bc927e1 100755 --- a/qa/rpc-tests/httpbasics.py +++ b/qa/rpc-tests/httpbasics.py @@ -14,8 +14,13 @@ import http.client import urllib.parse class HTTPBasicsTest (BitcoinTestFramework): - def setup_nodes(self): - return start_nodes(4, self.options.tmpdir) + def __init__(self): + super().__init__() + self.num_nodes = 3 + self.setup_clean_chain = False + + def setup_network(self): + self.nodes = self.setup_nodes() def run_test(self): |