aboutsummaryrefslogtreecommitdiff
path: root/test/functional/wallet_createwallet.py
diff options
context:
space:
mode:
authorRoss Nicoll <[email protected]>2021-06-08 22:24:47 +0100
committerRoss Nicoll <[email protected]>2021-06-12 16:58:46 +0100
commit261d38e0feda61afd6882f166db213a0ac8672b5 (patch)
tree041de40626a3caa28554e3d3219167456b54700f /test/functional/wallet_createwallet.py
parentMerge pull request #2259 from rnicoll/1.21-node-context (diff)
downloaddiscoin-261d38e0feda61afd6882f166db213a0ac8672b5.tar.xz
discoin-261d38e0feda61afd6882f166db213a0ac8672b5.zip
Generate legacy addresses by default
Generate legacy addresses instead of SegWit by default.
Diffstat (limited to 'test/functional/wallet_createwallet.py')
-rwxr-xr-xtest/functional/wallet_createwallet.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/functional/wallet_createwallet.py b/test/functional/wallet_createwallet.py
index cf3317121..6230d943b 100755
--- a/test/functional/wallet_createwallet.py
+++ b/test/functional/wallet_createwallet.py
@@ -19,6 +19,8 @@ class CreateWalletTest(BitcoinTestFramework):
def set_test_params(self):
self.setup_clean_chain = False
self.num_nodes = 1
+ # Dogecoin: Force BECH32 addresses so descriptors work
+ self.extra_args = [['-addresstype=bech32']] * self.num_nodes
def skip_test_if_missing_module(self):
self.skip_if_no_wallet()