1234567891011121314151617181920212223242526 |
- """
- wallet.bip39: BIP39 mnemonic wallet class
- """
- from .mnemonic import wallet
- class wallet(wallet):
- desc = 'BIP39 mnemonic data'
- mn_type = 'BIP39'
- wl_id = 'bip39'
- def __init__(self, *args, **kwargs):
- from ..bip39 import bip39
- self.conv_cls = bip39
- super().__init__(*args, **kwargs)
|