You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mnemonic = Mnemonic(args.language) words = mnemonic.generate(args.strength) entropy = mnemonic.to_entropy(words)
Both language and strength are passed from the command line arguments. to_entropy() method fails with the following languages:
japanese
russian
turkish
The text was updated successfully, but these errors were encountered:
I've created the following code:
mnemonic = Mnemonic(args.language)
words = mnemonic.generate(args.strength)
entropy = mnemonic.to_entropy(words)
Both language and strength are passed from the command line arguments.
to_entropy()
method fails with the following languages:japanese
russian
turkish
The text was updated successfully, but these errors were encountered: