From 1e2277bf1ff790c0f2d5e80b3ec4ec9a573fd7d2 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sat, 14 Jun 2014 12:21:08 +0200 Subject: [PATCH] fix: expiration in invoices --- gui/qt/main_window.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index 9f68e28..0370a3a 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -1320,7 +1320,7 @@ class ElectrumWindow(QMainWindow): def do_pay_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 -- 1.7.1