1
0

do not pass config to storage. request height from network_proxy if connected

This commit is contained in:
ThomasV
2015-05-08 10:58:54 +02:00
parent 6035fe974c
commit c2a4252065
10 changed files with 44 additions and 41 deletions

View File

@@ -179,7 +179,7 @@ class ElectrumGui:
if os.path.exists(last_wallet):
self.config.read_only_options['default_wallet_path'] = last_wallet
try:
storage = WalletStorage(self.config)
storage = WalletStorage(self.config.get_wallet_path())
except BaseException as e:
QMessageBox.warning(None, _('Warning'), str(e), _('OK'))
self.config.set_key('gui_last_wallet', None)