Browse Source

fix: expiration in invoices

283
ThomasV 11 years ago
parent
commit
1e2277bf1f
  1. 2
      gui/qt/main_window.py

2
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

Loading…
Cancel
Save