diff options
| author | Russell Yanofsky <[email protected]> | 2020-10-07 14:50:05 -0400 |
|---|---|---|
| committer | Andrew Chow <[email protected]> | 2020-10-14 11:28:18 -0400 |
| commit | c4a29d0a90b821c443c10891d9326c534d15cf97 (patch) | |
| tree | 3cb071df0b6bbf7839c8f0eb26c64372d17d1564 /test/functional/test_framework | |
| parent | Run dumpwallet for legacy wallets only in wallet_backup.py (diff) | |
| download | discoin-c4a29d0a90b821c443c10891d9326c534d15cf97.tar.xz discoin-c4a29d0a90b821c443c10891d9326c534d15cf97.zip | |
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 2824d8043..115ffa3e8 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) * |