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/forknotify.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/forknotify.py')
| -rwxr-xr-x | qa/rpc-tests/forknotify.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/qa/rpc-tests/forknotify.py b/qa/rpc-tests/forknotify.py index 421f3dd87..5a3f75c80 100755 --- a/qa/rpc-tests/forknotify.py +++ b/qa/rpc-tests/forknotify.py @@ -12,6 +12,11 @@ from test_framework.util import * class ForkNotifyTest(BitcoinTestFramework): + def __init__(self): + super().__init__() + self.num_nodes = 2 + self.setup_clean_chain = False + alert_filename = None # Set by setup_network def setup_network(self): |