diff options
| author | MarcoFalke <[email protected]> | 2018-05-09 14:43:09 -0400 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2018-05-09 14:43:12 -0400 |
| commit | 196c5a947a071f7c9c5b211f0a47787a7d540ecb (patch) | |
| tree | 483182d89f4aa4d219868bea17ff7a83e0e5baaa | |
| parent | Merge #13190: Have gArgs handle printing help (diff) | |
| parent | [qa] Avoid printing to console during cache creation (diff) | |
| download | discoin-196c5a947a071f7c9c5b211f0a47787a7d540ecb.tar.xz discoin-196c5a947a071f7c9c5b211f0a47787a7d540ecb.zip | |
Merge #13198: [qa] Avoid printing to console during cache creation
08ebdba82a [qa] Avoid printing to console during cache creation (Suhas Daftuar)
Pull request description:
Tree-SHA512: 151b73ab6989a44a5c3d4707ff2f756a360bc507249b645e008e08880ac1c51e83420c1d37b49b6b97089116550023bba64ff1f10437809f1c49980722d563b8
| -rwxr-xr-x | test/functional/test_framework/test_node.py | 3 | ||||
| -rw-r--r-- | test/functional/test_framework/util.py | 1 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/test_framework/test_node.py b/test/functional/test_framework/test_node.py index eac6057de..0353fc071 100755 --- a/test/functional/test_framework/test_node.py +++ b/test/functional/test_framework/test_node.py @@ -83,8 +83,7 @@ class TestNode(): "-debugexclude=libevent", "-debugexclude=leveldb", "-mocktime=" + str(mocktime), - "-uacomment=testnode%d" % i, - "-noprinttoconsole" + "-uacomment=testnode%d" % i ] self.cli = TestNodeCLI(bitcoin_cli, self.datadir) diff --git a/test/functional/test_framework/util.py b/test/functional/test_framework/util.py index 540727dc8..c7710cc89 100644 --- a/test/functional/test_framework/util.py +++ b/test/functional/test_framework/util.py @@ -301,6 +301,7 @@ def initialize_datadir(dirname, n): f.write("keypool=1\n") f.write("discover=0\n") f.write("listenonion=0\n") + f.write("printtoconsole=0\n") os.makedirs(os.path.join(datadir, 'stderr'), exist_ok=True) os.makedirs(os.path.join(datadir, 'stdout'), exist_ok=True) return datadir |