aboutsummaryrefslogtreecommitdiff
path: root/test/functional/wallet.py
diff options
context:
space:
mode:
authorAndrew Chow <achow101-github@achow101.com>2017-09-05 15:54:11 -0700
committerAndrew Chow <achow101-github@achow101.com>2017-09-07 16:37:44 -0700
commit713a92073b3b391f48d4fa146bd334893ec94b8f (patch)
tree4546bc0f01087c32c9cf887e1766294badc5d24a /test/functional/wallet.py
parentd4c18f7330b1a967b8144df3d49a857514310a55 (diff)
downloadbitcoin-713a92073b3b391f48d4fa146bd334893ec94b8f.tar.xz
Remove usehd option and warn when it is used
Removed the -usehd option so wallets cannot be made to be non-hd anymore. A warning will be displayed when the option is set.
Diffstat (limited to 'test/functional/wallet.py')
-rwxr-xr-xtest/functional/wallet.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/functional/wallet.py b/test/functional/wallet.py
index 27089e8845..a643684c7f 100755
--- a/test/functional/wallet.py
+++ b/test/functional/wallet.py
@@ -10,10 +10,9 @@ class WalletTest(BitcoinTestFramework):
def set_test_params(self):
self.num_nodes = 4
self.setup_clean_chain = True
- self.extra_args = [['-usehd={:d}'.format(i%2==0)] for i in range(4)]
def setup_network(self):
- self.add_nodes(4, self.extra_args)
+ self.add_nodes(4)
self.start_node(0)
self.start_node(1)
self.start_node(2)