electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit d45d1e238233ece797b532cfdeccbd877d951231
parent bdf9baca127e3c1f9957f226bbf3408b6f7b478c
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:
Mgui.py | 6+++---
Mgui_qt.py | 2+-
2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/gui.py b/gui.py @@ -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 @@ -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..." @@ -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() ) diff --git a/gui_qt.py b/gui_qt.py @@ -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