tshow txid in invoice details - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 597dd49e8c51aeea0466759ee874fd7d72bfd059 DIR parent 4193fffc33766ae0a0975a3417d87fb879516c36 HTML Author: ThomasV <thomasv@gitorious> Date: Mon, 14 Jul 2014 00:10:53 +0200 show txid in invoice details Diffstat: M gui/qt/main_window.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) --- DIR diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py t@@ -1495,14 +1495,16 @@ class ElectrumWindow(QMainWindow): pr.read_file(key) pr.domain = domain pr.verify() - self.show_pr_details(pr) + self.show_pr_details(pr, tx_hash) - def show_pr_details(self, pr): + def show_pr_details(self, pr, tx_hash=None): msg = 'Domain: ' + pr.domain msg += '\nStatus: ' + pr.get_status() msg += '\nMemo: ' + pr.get_memo() msg += '\nPayment URL: ' + pr.payment_url msg += '\n\nOutputs:\n' + '\n'.join(map(lambda x: x[1] + ' ' + self.format_amount(x[2])+ self.base_unit(), pr.get_outputs())) + if tx_hash: + msg += '\n\nTransaction ID: ' + tx_hash QMessageBox.information(self, 'Invoice', msg , 'OK') def do_pay_invoice(self, key):