URI: 
       tAdded blocktrail to explorers - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit b48e99656236b74b634e55f7893e597f4136b03e
   DIR parent 8a17e1a5a70df7cff4034f747fe26b7a6fb39084
  HTML Author: Maran <maran.hidskes@gmail.com>
       Date:   Fri, 22 Aug 2014 12:53:39 +0200
       
       Added blocktrail to explorers
       
       Diffstat:
         M gui/qt/main_window.py               |       5 ++++-
       
       1 file changed, 4 insertions(+), 1 deletion(-)
       ---
   DIR diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py
       t@@ -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
       t@@ -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()