electrum

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

commit 074872afbc5b33ee837c1be2dde577e4583890f6
parent 878e3f80ad859a66f5a4569fb88dd35c4b50ab64
Author: ThomasV <thomasv@gitorious>
Date:   Wed, 22 Jul 2015 08:23:13 +0200

fix #1359

Diffstat:
Mscripts/authenticator.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/authenticator.py b/scripts/authenticator.py @@ -198,7 +198,7 @@ class Authenticator: exit() if not Wallet.is_seed(seed): exit() - wallet = Wallet.from_seed(seed, storage) + wallet = Wallet.from_seed(seed, password, storage) else: exit()