From b48e99656236b74b634e55f7893e597f4136b03e Mon Sep 17 00:00:00 2001 From: Maran Date: Fri, 22 Aug 2014 12:53:39 +0200 Subject: [PATCH] Added blocktrail to explorers --- gui/qt/main_window.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index 87a7d352a..b08a08847 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -535,6 +535,9 @@ class ElectrumWindow(QMainWindow): block_explorer = 'https://blockr.io/tx/info/' elif be == 'Insight.is': block_explorer = 'http://live.insight.is/tx/' + elif be == "Blocktrail.com": + block_explorer = 'https://www.blocktrail.com/tx/' + if not item: return tx_hash = str(item.data(0, Qt.UserRole).toString()) if not tx_hash: return @@ -2552,7 +2555,7 @@ class ElectrumWindow(QMainWindow): grid.addWidget(HelpButton(_('Using change addresses makes it more difficult for other people to track your transactions.')+' '), 4, 2) if not self.config.is_modifiable('use_change'): usechange_cb.setEnabled(False) - block_explorers = ['Blockchain.info', 'Blockr.io', 'Insight.is'] + block_explorers = ['Blockchain.info', 'Blockr.io', 'Insight.is', "Blocktrail.com"] block_ex_label = QLabel(_('Online Block Explorer') + ':') grid.addWidget(block_ex_label, 5, 0) block_ex_combo = QComboBox()