electrum

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

commit 1763b5fcdc3266b496b2ca125a9d984d7f086d14
parent 95341e98cc0e783c1220392f1e3fca23d88d0b9b
Author: ThomasV <thomasv@electrum.org>
Date:   Thu,  2 Mar 2017 08:19:51 +0100

fix: missing parameter

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

diff --git a/lib/base_wizard.py b/lib/base_wizard.py @@ -329,7 +329,7 @@ class BaseWizard(object): if any(k.may_have_password() for k in self.keystores): self.request_password(run_next=self.on_password) else: - self.on_password(None) + self.on_password(None, False) def on_password(self, password, encrypt): self.storage.set_password(password, encrypt)