tfix: expiration in invoices - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 1e2277bf1ff790c0f2d5e80b3ec4ec9a573fd7d2 DIR parent d2cad7bbbbfa1b6b175ec39de36a76453192137d HTML Author: ThomasV <thomasv@gitorious> Date: Sat, 14 Jun 2014 12:21:08 +0200 fix: expiration in invoices Diffstat: M gui/qt/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py t@@ -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