From 0ad491b727145dd8905968d11e062679eee91bda Mon Sep 17 00:00:00 2001 From: dabura667 Date: Sun, 2 Mar 2014 21:19:49 +0900 Subject: [PATCH] Add link in history to view the tx on blockchain Mostly a convenience thing. webbrowser should work with Mac OS, but I have no environment to check with. Win and Linux both open the url fine in the default browser. --- gui/qt/main_window.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index 97dfbac8..564d1ee9 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -20,6 +20,7 @@ import sys, time, datetime, re, threading from electrum.i18n import _, set_language from electrum.util import print_error, print_msg import os.path, json, ast, traceback +import webbrowser import shutil import StringIO @@ -591,6 +592,7 @@ class ElectrumWindow(QMainWindow): 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(_("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))