aboutsummaryrefslogtreecommitdiff
path: root/qa/rpc-tests/getchaintips.py
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2015-12-02 18:12:23 +0100
committerMarcoFalke <falke.marco@gmail.com>2016-01-13 20:31:03 +0100
commit7777994846cdb9b9cf69e391a33eeed30393bbcf (patch)
tree371953417d82780ca58a8cd7c8fe96e4c71fa216 /qa/rpc-tests/getchaintips.py
parent17ef279304a94ec01a8525189b80c163d931b1cf (diff)
downloadbitcoin-7777994846cdb9b9cf69e391a33eeed30393bbcf.tar.xz
[qa] Fix pyton syntax in rpc tests
Diffstat (limited to 'qa/rpc-tests/getchaintips.py')
-rwxr-xr-xqa/rpc-tests/getchaintips.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/qa/rpc-tests/getchaintips.py b/qa/rpc-tests/getchaintips.py
index e8d2d8f3fd..dd260836bb 100755
--- a/qa/rpc-tests/getchaintips.py
+++ b/qa/rpc-tests/getchaintips.py
@@ -23,8 +23,8 @@ class GetChainTipsTest (BitcoinTestFramework):
# Split the network and build two chains of different lengths.
self.split_network ()
- self.nodes[0].generate(10);
- self.nodes[2].generate(20);
+ self.nodes[0].generate(10)
+ self.nodes[2].generate(20)
self.sync_all ()
tips = self.nodes[1].getchaintips ()