diff options
author | Russell Yanofsky <russ@yanofsky.org> | 2020-08-04 21:03:27 -0400 |
---|---|---|
committer | Russell Yanofsky <russ@yanofsky.org> | 2020-09-03 12:24:32 -0400 |
commit | 77d5bb72b8722ec7a6c7c33479a532cbd5870ba4 (patch) | |
tree | 84b7820a100705154d6635483486aaa119b9fa43 /test/functional/wallet_multiwallet.py | |
parent | a987438e9d9cad0b5530e218a447928485f3fd93 (diff) |
wallet: Remove path checking code from createwallet RPC
This commit does not change behavior except for error messages which now
include more complete information.
Diffstat (limited to 'test/functional/wallet_multiwallet.py')
-rwxr-xr-x | test/functional/wallet_multiwallet.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/functional/wallet_multiwallet.py b/test/functional/wallet_multiwallet.py index 168d6be42c..d64d3dcb49 100755 --- a/test/functional/wallet_multiwallet.py +++ b/test/functional/wallet_multiwallet.py @@ -273,7 +273,8 @@ class MultiWalletTest(BitcoinTestFramework): self.log.info("Test dynamic wallet creation.") # Fail to create a wallet if it already exists. - assert_raises_rpc_error(-4, "Wallet w2 already exists.", self.nodes[0].createwallet, 'w2') + path = os.path.join(self.options.tmpdir, "node0", "regtest", "wallets", "w2") + assert_raises_rpc_error(-4, "Failed to create database path '{}'. Database already exists.".format(path), self.nodes[0].createwallet, 'w2') # Successfully create a wallet with a new name loadwallet_name = self.nodes[0].createwallet('w9') |