Merge pull request #3075 from ariard/fix_check_seed

fix: [check_seed command] import path
This commit is contained in:
ThomasV 2017-10-20 18:31:25 +02:00 committed by GitHub
commit 4b60513d5e
1 changed files with 1 additions and 1 deletions

View File

@ -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')