electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 4b60513d5e8e780aa5f31cb217646b931f5a1e06
parent 5a45f257cad2f2077fc2acda872b48e12d2bc1c9
Author: ThomasV <thomasv@electrum.org>
Date:   Fri, 20 Oct 2017 18:31:25 +0200

Merge pull request #3075 from ariard/fix_check_seed

fix: [check_seed command] import path
Diffstat:
Mlib/commands.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/commands.py b/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')