commit 93d7aebae473db79d04c7bf41c9b2691255589ac
parent e7d4bf294570631cc0d7dbfffbca33073a800a12
Author: ThomasV <thomasv@electrum.org>
Date: Fri, 27 Oct 2017 11:20:04 +0200
Merge pull request #3135 from SomberNight/payment_req2
Payment request: "pay now" allow multiple attempts
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py
@@ -1704,6 +1704,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError):
pr = self.invoices.get(key)
self.payment_request = pr
self.prepare_for_payment_request()
+ pr.error = None # this forces verify() to re-run
if pr.verify(self.contacts):
self.payment_request_ok()
else: