1
0

bump version number; reduce timeout

This commit is contained in:
thomasv
2012-03-14 15:38:03 +01:00
parent 9fddc3e6ea
commit 3aa71f2dc8
2 changed files with 2 additions and 2 deletions

View File

@@ -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)