diff options
| author | Tomo Ueda <[email protected]> | 2021-09-02 12:22:51 -0700 |
|---|---|---|
| committer | Tomo Ueda <[email protected]> | 2021-09-02 12:22:51 -0700 |
| commit | 5dc1b84ed324b677ecb13d71fd38bcece1b54383 (patch) | |
| tree | 085f913c1181febcf2dc42cd11e086fd89f74d4c /qa/rpc-tests/test_framework/test_framework.py | |
| parent | Merge pull request #2469 from patricklodder/1.14.4-fixate (diff) | |
| download | archived-discoin-5dc1b84ed324b677ecb13d71fd38bcece1b54383.tar.xz archived-discoin-5dc1b84ed324b677ecb13d71fd38bcece1b54383.zip | |
s/doge/dis/g
Diffstat (limited to 'qa/rpc-tests/test_framework/test_framework.py')
| -rwxr-xr-x | qa/rpc-tests/test_framework/test_framework.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/qa/rpc-tests/test_framework/test_framework.py b/qa/rpc-tests/test_framework/test_framework.py index 7dd368130..1487b849e 100755 --- a/qa/rpc-tests/test_framework/test_framework.py +++ b/qa/rpc-tests/test_framework/test_framework.py @@ -104,11 +104,11 @@ class BitcoinTestFramework(object): parser = optparse.OptionParser(usage="%prog [options]") parser.add_option("--nocleanup", dest="nocleanup", default=False, action="store_true", - help="Leave dogecoinds and test.* datadir on exit or error") + help="Leave discoinds and test.* datadir on exit or error") parser.add_option("--noshutdown", dest="noshutdown", default=False, action="store_true", - help="Don't stop dogecoinds after the test execution") + help="Don't stop discoinds after the test execution") parser.add_option("--srcdir", dest="srcdir", default=os.path.normpath(os.path.dirname(os.path.realpath(__file__))+"/../../../src"), - help="Source directory containing dogecoind/bitcoin-cli (default: %default)") + help="Source directory containing discoind/bitcoin-cli (default: %default)") parser.add_option("--cachedir", dest="cachedir", default=os.path.normpath(os.path.dirname(os.path.realpath(__file__))+"/../../cache"), help="Directory for caching pregenerated datadirs") parser.add_option("--tmpdir", dest="tmpdir", default=tempfile.mkdtemp(prefix="test"), @@ -163,7 +163,7 @@ class BitcoinTestFramework(object): print("Stopping nodes") stop_nodes(self.nodes) else: - print("Note: dogecoinds were not stopped and may still be running") + print("Note: discoinds were not stopped and may still be running") if not self.options.nocleanup and not self.options.noshutdown and success: print("Cleaning up") @@ -205,11 +205,11 @@ class ComparisonTestFramework(BitcoinTestFramework): def add_options(self, parser): parser.add_option("--testbinary", dest="testbinary", - default=os.getenv("DOGECOIND", "dogecoind"), - help="dogecoind binary to test") + default=os.getenv("DOGECOIND", "discoind"), + help="discoind binary to test") parser.add_option("--refbinary", dest="refbinary", - default=os.getenv("DOGECOIND", "dogecoind"), - help="dogecoind binary to use for reference nodes (if any)") + default=os.getenv("DOGECOIND", "discoind"), + help="discoind binary to use for reference nodes (if any)") def setup_network(self): self.nodes = start_nodes( |