Skip to content

Commit

Permalink
qml: fix #8247
Browse files Browse the repository at this point in the history
  • Loading branch information
ecdsa committed Mar 16, 2023
1 parent 57a4cbb commit 849d987
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion electrum/gui/qml/qedaemon.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ def delete_wallet(self, wallet):
self._logger.debug('deleting wallet with path %s' % path)
self._current_wallet = None
# TODO walletLoaded signal is confusing
self.walletLoaded.emit()
self.walletLoaded.emit(None, None)

if not self.daemon.delete_wallet(path):
self.walletDeleteError.emit('error', _('Problem deleting wallet'))
Expand Down

0 comments on commit 849d987

Please sign in to comment.