Browse Source

fix: check_seed command import path

seed_v14
Antoine Riard 7 years ago
parent
commit
9ebca74724
  1. 2
      lib/commands.py

2
lib/commands.py

@ -176,7 +176,7 @@ class Commands:
@command('')
def check_seed(self, seed, entropy=1, language=None):
"""Check that a seed was generated with given entropy"""
from mnemonic import Mnemonic
from .mnemonic import Mnemonic
return Mnemonic(language).check_seed(seed, entropy)
@command('n')

Loading…
Cancel
Save