daemon
[electrum-nvc.git] / lib / network.py
index 35b2db1..ae9549d 100644 (file)
@@ -421,6 +421,16 @@ class Network(threading.Thread):
 
 
 
+class NetworkProxy:
+    # interface to the network object. 
+    # handle subscriptions and callbacks
+    # the network object can be jsonrpc server 
+    def __init__(self, network):
+        self.network = network
+
+
+
+
 if __name__ == "__main__":
     import simple_config
     config = simple_config.SimpleConfig({'verbose':True, 'server':'ecdsa.org:50002:s'})