diff options
| author | barrystyle <[email protected]> | 2021-02-20 20:13:43 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-02-20 12:13:43 +0000 |
| commit | 8f77f8870dcff8d22c4339cd72269cf71a8b1265 (patch) | |
| tree | 418715cc6d3f5f019f8e596b6b784d5247b67eec /test/functional/rpc_users.py | |
| parent | Merge #20933: [0.21] doc: Archive release notes, Add template for minor release (diff) | |
| download | discoin-8f77f8870dcff8d22c4339cd72269cf71a8b1265.tar.xz discoin-8f77f8870dcff8d22c4339cd72269cf71a8b1265.zip | |
1.21 codebase rebrand (#1711)
* build: Brand codebase as Dogecoin via automake/autoconf files.
* build: Update internal resource files for windows builds.
* build: Update internal application names and data directories.
* build: Update immediately visible remaining bitcoin name references from cli binaries and qt.
* build: Update immediately visible bitcoin references in the main gui itself.
* Update functional tests to match Dogecoin
* wallet: Add missing check for -descriptors wallet tool option
* correct output for functional tests (errorlevels?)
Co-authored-by: Ross Nicoll <[email protected]>
Co-authored-by: MarcoFalke <[email protected]>
Diffstat (limited to 'test/functional/rpc_users.py')
| -rwxr-xr-x | test/functional/rpc_users.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/rpc_users.py b/test/functional/rpc_users.py index daf02fc4f..6e8c9307a 100755 --- a/test/functional/rpc_users.py +++ b/test/functional/rpc_users.py @@ -64,11 +64,11 @@ class HTTPBasicsTest(BitcoinTestFramework): rpcauth3 = lines[1] self.password = lines[3] - with open(os.path.join(get_datadir_path(self.options.tmpdir, 0), "bitcoin.conf"), 'a', encoding='utf8') as f: + with open(os.path.join(get_datadir_path(self.options.tmpdir, 0), "dogecoin.conf"), 'a', encoding='utf8') as f: f.write(rpcauth + "\n") f.write(rpcauth2 + "\n") f.write(rpcauth3 + "\n") - with open(os.path.join(get_datadir_path(self.options.tmpdir, 1), "bitcoin.conf"), 'a', encoding='utf8') as f: + with open(os.path.join(get_datadir_path(self.options.tmpdir, 1), "dogecoin.conf"), 'a', encoding='utf8') as f: f.write("rpcuser={}\n".format(self.rpcuser)) f.write("rpcpassword={}\n".format(self.rpcpassword)) |