mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-02 10:15:20 +00:00
fix: check_seed command import path
This commit is contained in:
parent
5a45f257ca
commit
9ebca74724
1 changed files with 1 additions and 1 deletions
|
@ -176,7 +176,7 @@ class Commands:
|
||||||
@command('')
|
@command('')
|
||||||
def check_seed(self, seed, entropy=1, language=None):
|
def check_seed(self, seed, entropy=1, language=None):
|
||||||
"""Check that a seed was generated with given entropy"""
|
"""Check that a seed was generated with given entropy"""
|
||||||
from mnemonic import Mnemonic
|
from .mnemonic import Mnemonic
|
||||||
return Mnemonic(language).check_seed(seed, entropy)
|
return Mnemonic(language).check_seed(seed, entropy)
|
||||||
|
|
||||||
@command('n')
|
@command('n')
|
||||||
|
|
Loading…
Add table
Reference in a new issue