mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-05 05:15:12 +00:00
fix typo: wallet.requests -> wallet.receive_requests (#5706)
This commit is contained in:
parent
3af7920b63
commit
b476681af7
1 changed files with 1 additions and 1 deletions
|
@ -1690,7 +1690,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, Logger):
|
||||||
self.invoice_list.update()
|
self.invoice_list.update()
|
||||||
|
|
||||||
def on_request_status(self, key, status):
|
def on_request_status(self, key, status):
|
||||||
if key not in self.wallet.requests:
|
if key not in self.wallet.receive_requests:
|
||||||
return
|
return
|
||||||
if status == PR_PAID:
|
if status == PR_PAID:
|
||||||
self.notify(_('Payment received') + '\n' + key)
|
self.notify(_('Payment received') + '\n' + key)
|
||||||
|
|
Loading…
Add table
Reference in a new issue