show request memo

This commit is contained in:
ThomasV 2014-05-10 22:43:53 +02:00
parent 6665a70a49
commit b9143b3800
2 changed files with 6 additions and 4 deletions

View File

@ -883,16 +883,16 @@ class ElectrumWindow(QMainWindow):
def prepare_for_payment_request(self):
style = "QWidget { background-color:none;border:none;}"
self.tabs.setCurrentIndex(1)
self.payto_e.setReadOnly(True)
self.payto_e.setStyleSheet(style)
self.amount_e.setReadOnly(True)
for e in [self.payto_e, self.amount_e, self.message_e]:
e.setReadOnly(True)
e.setStyleSheet(style)
self.payto_e.setText(_("please wait..."))
self.amount_e.setStyleSheet(style)
return True
def payment_request_ok(self):
self.payto_e.setText(self.gui_object.payment_request.domain)
self.amount_e.setText(self.format_amount(self.gui_object.payment_request.get_amount()))
self.message_e.setText(self.gui_object.payment_request.memo)
def payment_request_error(self):
self.payto_e.setText(self.gui_object.payment_request.error)

View File

@ -181,6 +181,8 @@ class PaymentRequest:
addr = transaction.get_address_from_output_script(o.script)[1]
self.outputs.append( (addr, o.amount) )
self.memo = pay_det.memo
if CA_match:
print 'Signed By Trusted CA: ', CA_OU