electrum

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

commit 9ef1f300f38a6413ed9fdebd1e1bce4a433f8da5
parent db6c69f0daecaa5f64e4bd92f80e50760caa98ed
Author: Maran <maran.hidskes@gmail.com>
Date:   Thu, 11 Jun 2015 15:08:15 +0200

Fix Wizard on first run

Diffstat:
Mgui/qt/main_window.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py @@ -334,7 +334,7 @@ class ElectrumWindow(QMainWindow): QMessageBox.critical(None, "Error", _("File exists")) return self.hide() - wizard = installwizard.InstallWizard(self.config, self.network, storage) + wizard = installwizard.InstallWizard(self.config, self.network, storage, self.app) action, wallet_type = wizard.restore_or_create() if not action: self.show()