electrum

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

commit 2a92a310ba7811ff679491a9bec90e77287faf98
parent 8c07bdc3bc5bb2a6b7fb7d75a8486beb803c4e95
Author: ThomasV <thomasv@gitorious>
Date:   Fri,  8 May 2015 17:47:04 +0200

typo

Diffstat:
Mlib/interface.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/interface.py b/lib/interface.py @@ -287,7 +287,7 @@ class TcpInterface(threading.Thread): self.send_request({'method':'server.version', 'params':[ELECTRUM_VERSION, PROTOCOL_VERSION]}) self.ping_time = time.time() # stop interface if we have been waiting for more than 10 seconds - if self.unanswered_requests and time.time() - self.self.request_time > 10 and self.pipe.idle_time() > 10: + if self.unanswered_requests and time.time() - self.request_time > 10 and self.pipe.idle_time() > 10: self.print_error("interface timeout", len(self.unanswered_requests)) self.stop()