1
0
This commit is contained in:
SomberNight
2018-04-03 02:48:55 +02:00
parent 5a508f7b8d
commit 42582b6a64
2 changed files with 8 additions and 1 deletions

View File

@@ -1838,6 +1838,9 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError):
def show_invoice(self, key):
pr = self.invoices.get(key)
if pr is None:
self.show_error('Cannot find payment request in wallet.')
return
pr.verify(self.contacts)
self.show_pr_details(pr)