Merge pull request #9160 from timesince/master
chore: fix some comments and var name
This commit is contained in:
@@ -2044,8 +2044,8 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, Logger, QtEventListener):
|
|||||||
if self.wallet.is_watching_only():
|
if self.wallet.is_watching_only():
|
||||||
self.show_message(_('This is a watching-only wallet.'))
|
self.show_message(_('This is a watching-only wallet.'))
|
||||||
return
|
return
|
||||||
cyphertext = encrypted_e.toPlainText()
|
ciphertext = encrypted_e.toPlainText()
|
||||||
task = partial(self.wallet.decrypt_message, pubkey_e.text(), cyphertext, password)
|
task = partial(self.wallet.decrypt_message, pubkey_e.text(), ciphertext, password)
|
||||||
|
|
||||||
def setText(text):
|
def setText(text):
|
||||||
try:
|
try:
|
||||||
|
|||||||
Reference in New Issue
Block a user