URI: 
       tdo not display response time; it is deprecated since we use stratum - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit d45d1e238233ece797b532cfdeccbd877d951231
   DIR parent bdf9baca127e3c1f9957f226bbf3408b6f7b478c
  HTML Author: thomasv <thomasv@gitorious>
       Date:   Wed,  2 May 2012 17:52:04 +0200
       
       do not display response time; it is deprecated since we use stratum
       
       Diffstat:
         M gui.py                              |       6 +++---
         M gui_qt.py                           |       2 +-
       
       2 files changed, 4 insertions(+), 4 deletions(-)
       ---
   DIR diff --git a/gui.py b/gui.py
       t@@ -300,7 +300,7 @@ def run_network_dialog( wallet, parent ):
            interface = wallet.interface
            if parent:
                if interface.is_connected:
       -            status = "Connected to %s:%d\n%d blocks\nresponse time: %f"%(interface.host, interface.port, wallet.blocks, interface.rtime)
       +            status = "Connected to %s:%d\n%d blocks"%(interface.host, interface.port, wallet.blocks)
                else:
                    status = "Not connected"
                server = wallet.server
       t@@ -1128,7 +1128,7 @@ class ElectrumWindow:
                if self.funds_error:
                    text = "Not enough funds"
                elif interface.is_connected:
       -            self.network_button.set_tooltip_text("Connected to %s:%d.\n%d blocks\nresponse time: %f"%(interface.host, interface.port, self.wallet.blocks, interface.rtime))
       +            self.network_button.set_tooltip_text("Connected to %s:%d.\n%d blocks"%(interface.host, interface.port, self.wallet.blocks))
                    if self.wallet.blocks == -1:
                        self.status_image.set_from_stock(gtk.STOCK_NO, gtk.ICON_SIZE_MENU)
                        text = "Connecting..."
       t@@ -1140,7 +1140,7 @@ class ElectrumWindow:
                        text = "Synchronizing..."
                    else:
                        self.status_image.set_from_stock(gtk.STOCK_YES, gtk.ICON_SIZE_MENU)
       -                self.network_button.set_tooltip_text("Connected to %s:%d.\n%d blocks\nresponse time: %f"%(interface.host, interface.port, self.wallet.blocks, interface.rtime))
       +                self.network_button.set_tooltip_text("Connected to %s:%d.\n%d blocks"%(interface.host, interface.port, self.wallet.blocks))
                        c, u = self.wallet.get_balance()
                        text =  "Balance: %s "%( format_satoshis(c,False,self.wallet.num_zeros) )
                        if u: text +=  "[%s unconfirmed]"%( format_satoshis(u,True,self.wallet.num_zeros).strip() )
   DIR diff --git a/gui_qt.py b/gui_qt.py
       t@@ -931,7 +931,7 @@ class ElectrumWindow(QMainWindow):
                interface = wallet.interface
                if parent:
                    if interface.is_connected:
       -                status = "Connected to %s:%d\n%d blocks\nresponse time: %f"%(interface.host, interface.port, wallet.blocks, interface.rtime)
       +                status = "Connected to %s:%d\n%d blocks"%(interface.host, interface.port, wallet.blocks)
                    else:
                        status = "Not connected"
                    server = wallet.server