electrum

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

commit be6aab538d76191fd849787a58ea40f24c5b7776
parent 5edf41f2e09014666ad70dd0f15faab5bd02e102
Author: ThomasV <thomasv@gitorious>
Date:   Sat, 27 Oct 2012 12:31:43 +0200

cosmetic change

Diffstat:
Mlib/interface.py | 11++++++++---
1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/lib/interface.py b/lib/interface.py @@ -256,15 +256,20 @@ class Interface(threading.Thread): try: out = '' while self.is_connected: + try: + timeout = False msg = self.s.recv(1024) except socket.timeout: - # ping the server with server.version, as a real ping does not exist yet - self.send([('server.version', [ELECTRUM_VERSION])]) - continue + timeout = True except ssl.SSLError: + timeout = True + + if timeout: + # ping the server with server.version, as a real ping does not exist yet self.send([('server.version', [ELECTRUM_VERSION])]) continue + out += msg self.bytes_received += len(msg) if msg == '':