URI: 
       tremove while loop in getservers - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit a4903fbf903ca06ca569608f049239509a6d2d4f
   DIR parent 32098b0e164932f8a8547430fbaff0bb7a265643
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Sat, 12 Mar 2016 09:43:55 +0100
       
       remove while loop in getservers
       
       Diffstat:
         M lib/commands.py                     |       2 --
       
       1 file changed, 0 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/lib/commands.py b/lib/commands.py
       t@@ -323,8 +323,6 @@ class Commands:
            @command('n')
            def getservers(self):
                """Return the list of available servers"""
       -        while not self.network.is_up_to_date():
       -            time.sleep(0.1)
                return self.network.get_servers()
        
            @command('')