Add support for multiple mnemonic wordlist

Added Wordlist class and registry
Moved mnemonic encoding/decoding logic from Seed to Wordlist
This commit is contained in:
Adam Ward 2018-06-03 12:28:33 +10:00
parent 7c26bb62d9
commit 4c9ca07006
6 changed files with 1790 additions and 1688 deletions

View file

@ -1,7 +1,8 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import unittest
from monero.seed import Seed, get_checksum
from monero.seed import Seed
class SeedTestCase(unittest.TestCase):