mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 04:22:55 +01:00
d97ec350f0
## Issue being fixed or feature implemented Allow generating 12, 18, 24 words mnemonics. Default to 12 words as it's the most popular option/de-facto a standard now imo. ## What was done? Add `-mnemonicbits` option, add tests ## How Has This Been Tested? run tests, play with wallets on regtest ## Breaking Changes n/a, old wallets should not be affected ## Checklist: - [x] I have performed a self-review of my own code - [x] I have commented my code, particularly in hard-to-understand areas - [ ] I have added or updated relevant unit/integration/functional/e2e tests - [ ] I have made corresponding changes to the documentation - [x] I have assigned this pull request to a milestone _(for repository code-owners and collaborators only)_
52 lines
2.6 KiB
Python
Executable File
52 lines
2.6 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
# Copyright (c) 2023 The Dash Core developers
|
|
# Distributed under the MIT software license, see the accompanying
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
"""Test -mnemonicbits wallet option."""
|
|
|
|
from test_framework.test_framework import BitcoinTestFramework
|
|
from test_framework.util import (
|
|
assert_equal,
|
|
)
|
|
|
|
class WalletMnemonicbitsTest(BitcoinTestFramework):
|
|
def set_test_params(self):
|
|
self.setup_clean_chain = True
|
|
self.num_nodes = 1
|
|
self.extra_args = [['-usehd=1']]
|
|
|
|
def skip_test_if_missing_module(self):
|
|
self.skip_if_no_wallet()
|
|
|
|
def run_test(self):
|
|
self.log.info("Test -mnemonicbits")
|
|
|
|
self.log.info("Invalid -mnemonicbits should rise an error")
|
|
self.stop_node(0)
|
|
self.nodes[0].assert_start_raises_init_error(self.extra_args[0] + ['-mnemonicbits=123'], "Error: Invalid '-mnemonicbits'. Allowed values: 128, 160, 192, 224, 256.")
|
|
self.start_node(0)
|
|
assert_equal(len(self.nodes[0].dumphdinfo()["mnemonic"].split()), 12) # 12 words by default
|
|
|
|
self.log.info("Can have multiple wallets with different mnemonic length loaded at the same time")
|
|
self.restart_node(0, extra_args=self.extra_args[0] + ["-mnemonicbits=160"])
|
|
self.nodes[0].createwallet("wallet_160")
|
|
self.restart_node(0, extra_args=self.extra_args[0] + ["-mnemonicbits=192"])
|
|
self.nodes[0].createwallet("wallet_192")
|
|
self.restart_node(0, extra_args=self.extra_args[0] + ["-mnemonicbits=224"])
|
|
self.nodes[0].createwallet("wallet_224")
|
|
self.restart_node(0, extra_args=self.extra_args[0] + ["-mnemonicbits=256"])
|
|
self.nodes[0].loadwallet("wallet_160")
|
|
self.nodes[0].loadwallet("wallet_192")
|
|
self.nodes[0].loadwallet("wallet_224")
|
|
self.nodes[0].createwallet("wallet_256", False, True) # blank
|
|
self.nodes[0].get_wallet_rpc("wallet_256").upgradetohd()
|
|
assert_equal(len(self.nodes[0].get_wallet_rpc(self.default_wallet_name).dumphdinfo()["mnemonic"].split()), 12) # 12 words by default
|
|
assert_equal(len(self.nodes[0].get_wallet_rpc("wallet_160").dumphdinfo()["mnemonic"].split()), 15) # 15 words
|
|
assert_equal(len(self.nodes[0].get_wallet_rpc("wallet_192").dumphdinfo()["mnemonic"].split()), 18) # 18 words
|
|
assert_equal(len(self.nodes[0].get_wallet_rpc("wallet_224").dumphdinfo()["mnemonic"].split()), 21) # 21 words
|
|
assert_equal(len(self.nodes[0].get_wallet_rpc("wallet_256").dumphdinfo()["mnemonic"].split()), 24) # 24 words
|
|
|
|
|
|
if __name__ == '__main__':
|
|
WalletMnemonicbitsTest().main ()
|