aboutsummaryrefslogtreecommitdiff
path: root/test/functional/tool_wallet.py
diff options
context:
space:
mode:
authorHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2021-10-19 23:53:23 +0300
committerHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2021-10-20 21:09:14 +0300
commitda791c7f66243080177f92ce5f38c49305da63dc (patch)
treedca91e69cb1bbee43aea34498c2ddd5ab6ad7ce0 /test/functional/tool_wallet.py
parent986003aff93c099c400c9285b4a2ed63f4b3f180 (diff)
downloadbitcoin-da791c7f66243080177f92ce5f38c49305da63dc.tar.xz
wallet: Use PACKAGE_NAME to mention our software
Diffstat (limited to 'test/functional/tool_wallet.py')
-rwxr-xr-xtest/functional/tool_wallet.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/tool_wallet.py b/test/functional/tool_wallet.py
index 4bf3927879..a276d20b43 100755
--- a/test/functional/tool_wallet.py
+++ b/test/functional/tool_wallet.py
@@ -193,7 +193,7 @@ class ToolWalletTest(BitcoinTestFramework):
locked_dir = os.path.join(self.options.tmpdir, "node0", "regtest", "wallets")
error = 'Error initializing wallet database environment "{}"!'.format(locked_dir)
if self.options.descriptors:
- error = "SQLiteDatabase: Unable to obtain an exclusive lock on the database, is it being used by another bitcoind?"
+ error = f"SQLiteDatabase: Unable to obtain an exclusive lock on the database, is it being used by another instance of {self.config['environment']['PACKAGE_NAME']}?"
self.assert_raises_tool_error(
error,
'-wallet=' + self.default_wallet_name,