Browse Source
qt wizard: follow-up prev; simplify
dependabot/pip/contrib/deterministic-build/ecdsa-0.13.3
SomberNight
5 years ago
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
1 changed files with
1 additions and
4 deletions
-
electrum/gui/qt/installwizard.py
|
|
@ -193,10 +193,7 @@ class InstallWizard(QDialog, MessageBoxMixin, BaseWizard): |
|
|
|
vbox.addLayout(hbox2) |
|
|
|
self.set_layout(vbox, title=_('Electrum wallet')) |
|
|
|
|
|
|
|
try: |
|
|
|
temp_storage = WalletStorage(path, manual_upgrades=True) |
|
|
|
except (StorageReadWriteError, WalletFileException): |
|
|
|
temp_storage = None # type: Optional[WalletStorage] |
|
|
|
temp_storage = None # type: Optional[WalletStorage] |
|
|
|
wallet_folder = os.path.dirname(path) |
|
|
|
|
|
|
|
def on_choose(): |
|
|
|