electrum

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

commit 9b2f5805dad00695361a32fd1860d83a1368f1af
parent c2967e874cb0930f2bef864f0faae0219f75f94e
Author: ThomasV <thomasv@gitorious>
Date:   Wed, 16 May 2012 19:45:45 +0200

virtual method init_socket

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

diff --git a/lib/interface.py b/lib/interface.py @@ -53,6 +53,9 @@ class Interface(threading.Thread): self.responses = Queue.Queue() self.unanswered_requests = {} + def init_socket(self): + pass + def poke(self): # push a fake response so that the getting thread exits its loop self.responses.put(None)