We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4406226 commit 941c296Copy full SHA for 941c296
src/mnemonic/mnemonic.py
@@ -67,6 +67,7 @@ def b58encode(v: bytes) -> str:
67
68
class Mnemonic(object):
69
def __init__(self, language: str = "english"):
70
+ self.language = language
71
self.radix = 2048
72
d = os.path.join(os.path.dirname(__file__), f"wordlist/{language}.txt")
73
if os.path.exists(d) and os.path.isfile(d):
0 commit comments