URI: 
       tbump version number; reduce timeout - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 3aa71f2dc8ee040136d8b7322d41b63276651951
   DIR parent 9fddc3e6ea0db92566e978e2c354a6c1bd8c43f2
  HTML Author: thomasv <thomasv@gitorious>
       Date:   Wed, 14 Mar 2012 15:38:03 +0100
       
       bump version number; reduce timeout
       
       Diffstat:
         M client/interface.py                 |       2 +-
         M client/version.py                   |       2 +-
       
       2 files changed, 2 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/client/interface.py b/client/interface.py
       t@@ -290,7 +290,7 @@ class TCPInterface(Interface):
        
            def start_session(self, wallet):
                self.s = socket.socket( socket.AF_INET, socket.SOCK_STREAM )
       -        self.s.settimeout(DEFAULT_TIMEOUT)
       +        self.s.settimeout(1)
                self.s.connect(( self.host, self.port))
                thread.start_new_thread(self.listen_thread, (wallet,))
                self.send('client.version', wallet.electrum_version)
   DIR diff --git a/client/version.py b/client/version.py
       t@@ -1,2 +1,2 @@
       -ELECTRUM_VERSION = "0.41"
       +ELECTRUM_VERSION = "0.42"
        SEED_VERSION = 4  # bump this everytime the seed generation is modified