http://mmgen-wallet.i2p/project/mmgen/mmgen-wallet/commit/faf28879f6dd9a0dc8ee4186384eab2c69acdbde?style=split
= {chk_bin_chk})' ) - return seed_ hex + return seed_ bytes - def fromhex(self,hexstr,pad=None,tostr=False): + def fromhex(self, hexstr, pad=None, tostr=False): assert is_hex_str(hexstr),'seed data not a hexadecimal string' assert is_hex_str(hexstr),'seed data not a hexadecimal string' + return self.frombytes(bytes.fromhex(hexstr), pad=pad, tostr=tostr) + + def frombytes(self, seed_bytes, pad=None, tostr=False): assert tostr is False,"'tostr' must be False for 'bip39'" assert tostr is False,"'tostr'...