Fix some docs and references to bitcoind

This commit is contained in:
Jonathan "Duke" Leto
2018-08-07 21:23:05 +02:00
parent 38a2d0c825
commit eb8f0960e1
2 changed files with 7 additions and 7 deletions

View File

@@ -202,7 +202,7 @@ def start_node(i, dirname, extra_args=None, rpchost=None, timewait=None, binary=
binary = os.getenv("BITCOIND", "komodod")
args = [ binary, "-datadir="+datadir, "-keypool=1", "-discover=0", "-rest" ]
if extra_args is not None: args.extend(extra_args)
print("args=" + ' '.join(args))
#print("args=" + ' '.join(args))
bitcoind_processes[i] = subprocess.Popen(args)
devnull = open("/dev/null", "w+")