small fixes for gtk gui
authorThomasV <thomasv@gitorious>
Thu, 11 Oct 2012 23:21:50 +0000 (01:21 +0200)
committerThomasV <thomasv@gitorious>
Thu, 11 Oct 2012 23:21:50 +0000 (01:21 +0200)
lib/gui.py

index 837dd9a..8300c9e 100644 (file)
@@ -306,7 +306,7 @@ def run_network_dialog( wallet, parent ):
             status = "Connected to %s:%d\n%d blocks"%(interface.host, interface.port, wallet.blocks)
         else:
             status = "Not connected"
-        server = wallet.server
+        server = interface.server
     else:
         import random
         status = "Please choose a server."
@@ -1160,7 +1160,7 @@ class ElectrumWindow:
                 if u: text +=  "[%s unconfirmed]"%( format_satoshis(u,True,self.wallet.num_zeros).strip() )
         else:
             self.status_image.set_from_stock(gtk.STOCK_NO, gtk.ICON_SIZE_MENU)
-            self.network_button.set_tooltip_text("Trying to contact %s.\n%d blocks"%(self.wallet.server, self.wallet.blocks))
+            self.network_button.set_tooltip_text("Trying to contact %s.\n%d blocks"%(interface.server, self.wallet.blocks))
             text = "Not connected"
 
         self.status_bar.pop(self.context_id)