Browse Source

Merge pull request #591 from dabura667/Blockchainlink

Add link in history to view the tx on blockchain.info
283
ThomasV 11 years ago
parent
commit
b6d541ef8e
  1. 2
      gui/qt/main_window.py

2
gui/qt/main_window.py

@ -20,6 +20,7 @@ import sys, time, datetime, re, threading
from electrum.i18n import _, set_language from electrum.i18n import _, set_language
from electrum.util import print_error, print_msg from electrum.util import print_error, print_msg
import os.path, json, ast, traceback import os.path, json, ast, traceback
import webbrowser
import shutil import shutil
import StringIO import StringIO
@ -594,6 +595,7 @@ class ElectrumWindow(QMainWindow):
menu.addAction(_("Copy ID to Clipboard"), lambda: self.app.clipboard().setText(tx_hash)) menu.addAction(_("Copy ID to Clipboard"), lambda: self.app.clipboard().setText(tx_hash))
menu.addAction(_("Details"), lambda: self.show_transaction(self.wallet.transactions.get(tx_hash))) menu.addAction(_("Details"), lambda: self.show_transaction(self.wallet.transactions.get(tx_hash)))
menu.addAction(_("Edit description"), lambda: self.tx_label_clicked(item,2)) menu.addAction(_("Edit description"), lambda: self.tx_label_clicked(item,2))
menu.addAction(_("View on Blockchain.info"), lambda: webbrowser.open("https://blockchain.info/tx/" + tx_hash))
menu.exec_(self.contacts_list.viewport().mapToGlobal(position)) menu.exec_(self.contacts_list.viewport().mapToGlobal(position))

Loading…
Cancel
Save