Browse Source

Merge pull request #9160 from timesince/master

chore: fix some comments and var name
master
ghost43 1 year ago committed by GitHub
parent
commit
e8474e8928
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 4
      electrum/gui/qt/main_window.py

4
electrum/gui/qt/main_window.py

@ -2044,8 +2044,8 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, Logger, QtEventListener):
if self.wallet.is_watching_only():
self.show_message(_('This is a watching-only wallet.'))
return
cyphertext = encrypted_e.toPlainText()
task = partial(self.wallet.decrypt_message, pubkey_e.text(), cyphertext, password)
ciphertext = encrypted_e.toPlainText()
task = partial(self.wallet.decrypt_message, pubkey_e.text(), ciphertext, password)
def setText(text):
try:

Loading…
Cancel
Save