We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8867387 commit 98c747eCopy full SHA for 98c747e
electrum/gui/qml/qedaemon.py
@@ -143,7 +143,9 @@ def passwordValidityCheck(self):
143
@pyqtSlot(str, str)
144
def load_wallet(self, path=None, password=None):
145
if path == None:
146
- self._path = self.daemon.config.get('gui_last_wallet')
+ self._path = self.daemon.config.get('wallet_path') # command line -w option
147
+ if self._path is None:
148
+ self._path = self.daemon.config.get('gui_last_wallet')
149
else:
150
self._path = path
151
if self._path is None:
0 commit comments