From 1f38a42d738e6e5db77a52acbeddf26f516fa75e Mon Sep 17 00:00:00 2001 From: ThomasV Date: Fri, 13 Jun 2014 17:11:15 +0200 Subject: [PATCH] minor fix --- gui/qt/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index 6f7ca862..07112c03 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -1303,7 +1303,7 @@ class ElectrumWindow(QMainWindow): def show_invoice(self, key): from electrum.paymentrequest import PaymentRequest - domain, memo, value, status, tx_hash = self.invoices[key] + domain, memo, value, expiration, status, tx_hash = self.invoices[key] pr = PaymentRequest(self.config) pr.read_file(key) pr.domain = domain