diff options
author | Russell Yanofsky <russ@yanofsky.org> | 2020-10-07 14:50:05 -0400 |
---|---|---|
committer | Andrew Chow <achow101-github@achow101.com> | 2020-10-14 11:28:18 -0400 |
commit | c4a29d0a90b821c443c10891d9326c534d15cf97 (patch) | |
tree | 3cb071df0b6bbf7839c8f0eb26c64372d17d1564 /test/functional/test_framework | |
parent | 310b0fde04639b7446efd5c1d2701caa4b991b86 (diff) |
Update wallet_multiwallet.py for descriptor and sqlite wallets
Diffstat (limited to 'test/functional/test_framework')
-rwxr-xr-x | test/functional/test_framework/test_framework.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/test_framework/test_framework.py b/test/functional/test_framework/test_framework.py index 2824d80434..115ffa3e8d 100755 --- a/test/functional/test_framework/test_framework.py +++ b/test/functional/test_framework/test_framework.py @@ -103,7 +103,7 @@ class BitcoinTestFramework(metaclass=BitcoinTestMetaClass): self.supports_cli = True self.bind_to_localhost_only = True self.parse_args() - self.default_wallet_name = "" + self.default_wallet_name = "default_wallet" if self.options.descriptors else "" self.wallet_data_filename = "wallet.dat" # Optional list of wallet names that can be set in set_test_params to # create and import keys to. If unset, default is len(nodes) * |