Skip to content

Commit

Permalink
Change Bitcoin to Dogecoin in QA output strings
Browse files Browse the repository at this point in the history
  • Loading branch information
chromatic committed Aug 31, 2023
1 parent 836753e commit 96483e2
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion qa/rpc-tests/test_framework/authproxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@

HTTP_TIMEOUT = 30

log = logging.getLogger("BitcoinRPC")
log = logging.getLogger("DogecoinRPC")

class JSONRPCException(Exception):
def __init__(self, rpc_error):
Expand Down
4 changes: 2 additions & 2 deletions qa/rpc-tests/test_framework/mininode.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Copyright (c) 2010 ArtForz -- public domain half-a-node
# Copyright (c) 2012 Jeff Garzik
# Copyright (c) 2010-2016 The Bitcoin Core developers
# Copyright (c) 2022 The Dogecoin Core developers
# Copyright (c) 2022-2023 The Dogecoin Core developers
# Distributed under the MIT software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.

Expand Down Expand Up @@ -1667,7 +1667,7 @@ def __init__(self, dstaddr, dstport, rpc, callback, net="regtest", services=NODE
vt.addrFrom.port = 0
self.send_message(vt, True)

print('MiniNode: Connecting to Bitcoin Node IP # ' + dstaddr + ':' \
print('MiniNode: Connecting to Dogecoin Node IP # ' + dstaddr + ':' \
+ str(dstport))

try:
Expand Down
2 changes: 1 addition & 1 deletion qa/rpc-tests/test_framework/test_framework.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def main(self):
parser.add_option("--noshutdown", dest="noshutdown", default=False, action="store_true",
help="Don't stop dogecoinds 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 dogecoind/dogecoin-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"),
Expand Down
4 changes: 2 additions & 2 deletions qa/rpc-tests/test_framework/util.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
# Copyright (c) 2014-2016 The Bitcoin Core developers
# Copyright (c) 2021 The Dogecoin Core developers
# Copyright (c) 2021-2023 The Dogecoin Core developers
# Distributed under the MIT software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.

Expand Down Expand Up @@ -215,7 +215,7 @@ def wait_for_bitcoind_start(process, url, i):
'''
while True:
if process.poll() is not None:
raise Exception('bitcoind exited with status %i during initialization' % process.returncode)
raise Exception('dogecoind exited with status %i during initialization' % process.returncode)
try:
rpc = get_rpc_proxy(url, i)
blocks = rpc.getblockcount()
Expand Down

0 comments on commit 96483e2

Please sign in to comment.