aboutsummaryrefslogtreecommitdiff
path: root/qa/rpc-tests/getchaintips.py
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2016-05-20 15:16:51 +0200
committerMarcoFalke <falke.marco@gmail.com>2016-05-20 15:26:22 +0200
commit8844ef15ded02d5ed86fb95aaf251235fcef2396 (patch)
tree9298733439413cf4475d9b5a4da43c359945f825 /qa/rpc-tests/getchaintips.py
parent1b87e5b5b184a0a6c683eda23b36393822b57f03 (diff)
parentfad68f751aff024bcbc1587640c3591aab5a80f7 (diff)
downloadbitcoin-8844ef15ded02d5ed86fb95aaf251235fcef2396.tar.xz
Merge #8056: [qa] Remove hardcoded "4 nodes" from test_framework
fad68f7 [qa] Reduce node count for some tests (MarcoFalke) fac9349 [qa] Remove hardcoded "4 nodes" from test_framework (MarcoFalke)
Diffstat (limited to 'qa/rpc-tests/getchaintips.py')
-rwxr-xr-xqa/rpc-tests/getchaintips.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/qa/rpc-tests/getchaintips.py b/qa/rpc-tests/getchaintips.py
index da354b0c97..1c66b8c289 100755
--- a/qa/rpc-tests/getchaintips.py
+++ b/qa/rpc-tests/getchaintips.py
@@ -11,9 +11,12 @@ from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import assert_equal
class GetChainTipsTest (BitcoinTestFramework):
+ def __init__(self):
+ super().__init__()
+ self.num_nodes = 4
+ self.setup_clean_chain = False
def run_test (self):
- BitcoinTestFramework.run_test (self)
tips = self.nodes[0].getchaintips ()
assert_equal (len (tips), 1)