electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 1e2277bf1ff790c0f2d5e80b3ec4ec9a573fd7d2
parent d2cad7bbbbfa1b6b175ec39de36a76453192137d
Author: ThomasV <thomasv@gitorious>
Date:   Sat, 14 Jun 2014 12:21:08 +0200

fix: expiration in invoices

Diffstat:
Mgui/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 @@ -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