mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 01:11:35 +00:00
do not raise BaseException
This commit is contained in:
parent
6617307730
commit
072ce9c7ac
1 changed files with 2 additions and 2 deletions
|
@ -501,7 +501,7 @@ class TrustedCoinPlugin(BasePlugin):
|
|||
|
||||
def make_seed(self, seed_type):
|
||||
if not is_any_2fa_seed_type(seed_type):
|
||||
raise BaseException('unexpected seed type: {}'.format(seed_type))
|
||||
raise Exception(f'unexpected seed type: {seed_type}')
|
||||
return Mnemonic('english').make_seed(seed_type=seed_type, num_bits=128)
|
||||
|
||||
@hook
|
||||
|
@ -550,7 +550,7 @@ class TrustedCoinPlugin(BasePlugin):
|
|||
def xkeys_from_seed(self, seed, passphrase):
|
||||
t = seed_type(seed)
|
||||
if not is_any_2fa_seed_type(t):
|
||||
raise BaseException('unexpected seed type: {}'.format(t))
|
||||
raise Exception(f'unexpected seed type: {t}')
|
||||
words = seed.split()
|
||||
n = len(words)
|
||||
# old version use long seed phrases
|
||||
|
|
Loading…
Add table
Reference in a new issue