URI: 
       trename interfaces - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 835d2106b1b22c0090e66b87a72e522fa48e60e2
   DIR parent 95a2881a8ccdef6d37f9180cbb06f4286d3edb6e
  HTML Author: ThomasV <thomasv@gitorious>
       Date:   Sat, 31 Mar 2012 16:35:54 +0200
       
       rename interfaces
       
       Diffstat:
         M client/blocks                       |       2 +-
         M client/interface.py                 |       8 ++++----
         M client/peers                        |       2 +-
         M client/wallet.py                    |       2 +-
       
       4 files changed, 7 insertions(+), 7 deletions(-)
       ---
   DIR diff --git a/client/blocks b/client/blocks
       t@@ -2,7 +2,7 @@
        
        import socket, time, interface
        
       -i = interface.AsynchronousInterface('ecdsa.org', 50001)
       +i = interface.TcpStratumInterface('ecdsa.org', 50001)
        i.start()
        i.send([('blockchain.numblocks.subscribe',[])])
        
   DIR diff --git a/client/interface.py b/client/interface.py
       t@@ -216,7 +216,7 @@ class NativeInterface(PollingInterface):
        
        
        
       -class HttpInterface(PollingInterface):
       +class HttpStratumInterface(PollingInterface):
        
            def poll(self):
                self.send([])
       t@@ -277,7 +277,7 @@ class HttpInterface(PollingInterface):
        
        
        
       -class AsynchronousInterface(Interface):
       +class TcpStratumInterface(Interface):
            """json-rpc over persistent TCP connection, asynchronous"""
        
            def __init__(self, host, port):
       t@@ -420,9 +420,9 @@ class WalletSynchronizer(threading.Thread):
                if protocol == 'n':
                    InterfaceClass = NativeInterface
                elif protocol == 't':
       -            InterfaceClass = AsynchronousInterface
       +            InterfaceClass = TcpStratumInterface
                elif protocol == 'h':
       -            InterfaceClass = HttpInterface
       +            InterfaceClass = HttpStratumInterface
                else:
                    print "unknown protocol"
                    InterfaceClass = NativeInterface
   DIR diff --git a/client/peers b/client/peers
       t@@ -2,7 +2,7 @@
        
        import socket, time, interface
        
       -i = interface.AsynchronousInterface('ecdsa.org', 50001)
       +i = interface.TcpStratumInterface('ecdsa.org', 50001)
        i.start()
        i.send([('server.peers.subscribe',[])])
        
   DIR diff --git a/client/wallet.py b/client/wallet.py
       t@@ -230,7 +230,7 @@ def format_satoshis(x, is_diff=False):
        
        
        from version import ELECTRUM_VERSION, SEED_VERSION
       -from interface import NativeInterface, AsynchronousInterface, HttpInterface, DEFAULT_SERVERS
       +from interface import DEFAULT_SERVERS