Skip to content

Commit

Permalink
Drop: default language param from mnemonic func for auto selection.
Browse files Browse the repository at this point in the history
  • Loading branch information
meherett committed Dec 22, 2022
1 parent dfee315 commit da3a3b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hdwallet/cli/generate/addresses.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def generate_addresses(
)
elif mnemonic:
hdwallet.from_mnemonic(
mnemonic=mnemonic, language=language, passphrase=passphrase
mnemonic=mnemonic, passphrase=passphrase
)
elif seed:
hdwallet.from_seed(
Expand Down
2 changes: 1 addition & 1 deletion hdwallet/cli/generate/hdwallet.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def generate_hdwallet(
)
elif mnemonic:
hdwallet.from_mnemonic(
mnemonic=mnemonic, language=language, passphrase=passphrase
mnemonic=mnemonic, passphrase=passphrase
)
elif seed:
hdwallet.from_seed(
Expand Down

0 comments on commit da3a3b8

Please sign in to comment.