diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-01-18 10:45:52 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-01-18 10:46:01 +0100 |
commit | 3ec5bb0a6e2ca3474fa90ce1d52a91a83b41a34c (patch) | |
tree | 68e6f64863b61a677593f837f03dbda0dd07582b /qa/rpc-tests/test_framework/util.py | |
parent | 5e00147838b0585aebdfd7533951f8708639bc9b (diff) | |
parent | 7777994846cdb9b9cf69e391a33eeed30393bbcf (diff) |
Merge pull request #7335
7777994 [qa] Fix pyton syntax in rpc tests (MarcoFalke)
Diffstat (limited to 'qa/rpc-tests/test_framework/util.py')
-rw-r--r-- | qa/rpc-tests/test_framework/util.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/qa/rpc-tests/test_framework/util.py b/qa/rpc-tests/test_framework/util.py index 0388e08115..15fd50363e 100644 --- a/qa/rpc-tests/test_framework/util.py +++ b/qa/rpc-tests/test_framework/util.py @@ -102,12 +102,12 @@ def initialize_datadir(dirname, n): if not os.path.isdir(datadir): os.makedirs(datadir) with open(os.path.join(datadir, "bitcoin.conf"), 'w') as f: - f.write("regtest=1\n"); - f.write("rpcuser=rt\n"); - f.write("rpcpassword=rt\n"); - f.write("port="+str(p2p_port(n))+"\n"); - f.write("rpcport="+str(rpc_port(n))+"\n"); - f.write("listenonion=0\n"); + f.write("regtest=1\n") + f.write("rpcuser=rt\n") + f.write("rpcpassword=rt\n") + f.write("port="+str(p2p_port(n))+"\n") + f.write("rpcport="+str(rpc_port(n))+"\n") + f.write("listenonion=0\n") return datadir def initialize_chain(test_dir): |