diff options
author | MarcoFalke <falke.marco@gmail.com> | 2015-12-06 20:24:02 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2016-01-20 16:58:43 +0100 |
commit | fa8e2a6925a07cc00a8748fcda52c0ca5c6c3732 (patch) | |
tree | be0bb97b777a7a8e6dbb68888af68239b81b6e4c /qa/rpc-tests/test_framework/util.py | |
parent | 545c5f920ebbbf0c95cc6b2fb508f5e7bc0fe67f (diff) |
[qa] Change default block priority size to 0
Diffstat (limited to 'qa/rpc-tests/test_framework/util.py')
-rw-r--r-- | qa/rpc-tests/test_framework/util.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/qa/rpc-tests/test_framework/util.py b/qa/rpc-tests/test_framework/util.py index bf89805f16..8c472a518d 100644 --- a/qa/rpc-tests/test_framework/util.py +++ b/qa/rpc-tests/test_framework/util.py @@ -240,8 +240,7 @@ def start_node(i, dirname, extra_args=None, rpchost=None, timewait=None, binary= datadir = os.path.join(dirname, "node"+str(i)) if binary is None: binary = os.getenv("BITCOIND", "bitcoind") - # RPC tests still depend on free transactions - args = [ binary, "-datadir="+datadir, "-server", "-keypool=1", "-discover=0", "-rest", "-blockprioritysize=50000", "-mocktime="+str(get_mocktime()) ] + args = [ binary, "-datadir="+datadir, "-server", "-keypool=1", "-discover=0", "-rest", "-mocktime="+str(get_mocktime()) ] if extra_args is not None: args.extend(extra_args) bitcoind_processes[i] = subprocess.Popen(args) devnull = open(os.devnull, "w") |