Browse Source

add safety notice

seed_v14
ThomasV 7 years ago
parent
commit
337675d134
  1. 5
      gui/qt/main_window.py

5
gui/qt/main_window.py

@ -1860,7 +1860,10 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError):
dialog.exec_()
def remove_wallet(self):
if self.question(_('Delete wallet file') + "\n'%s'"%self.wallet.storage.path):
if self.question('\n'.join([
_('Delete wallet file?'),
"%s"%self.wallet.storage.path,
_('If your wallet contains funds, make sure you have saved its seed.')])):
self._delete_wallet()
@protected

Loading…
Cancel
Save