mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-28 16:01:30 +00:00
rm useless warning
This commit is contained in:
parent
1628965ed5
commit
01d4118221
1 changed files with 2 additions and 3 deletions
|
@ -739,12 +739,11 @@ class ElectrumWindow(QMainWindow):
|
||||||
try:
|
try:
|
||||||
alias_privkey = self.wallet.get_private_key(alias_addr, password)[0]
|
alias_privkey = self.wallet.get_private_key(alias_addr, password)[0]
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
QMessageBox.warning(parent, _('Error'), str(e), _('OK'))
|
QMessageBox.warning(self, _('Error'), str(e), _('OK'))
|
||||||
return
|
return
|
||||||
else:
|
else:
|
||||||
return
|
return
|
||||||
else:
|
else:
|
||||||
if not self.question(_('This request will not be signed; the Bitcoin address returned by your alias does not belong to your wallet')):
|
|
||||||
return
|
return
|
||||||
pr, requestor = paymentrequest.make_request(self.config, req, alias, alias_privkey)
|
pr, requestor = paymentrequest.make_request(self.config, req, alias, alias_privkey)
|
||||||
if requestor:
|
if requestor:
|
||||||
|
|
Loading…
Add table
Reference in a new issue