new bitcoind backend (experimental)
[electrum-server.git] / server.py
index de95db3..517299e 100755 (executable)
--- a/server.py
+++ b/server.py
@@ -127,6 +127,11 @@ if __name__ == '__main__':
     shared = dispatcher.shared
 
     # Create and register processors
+
+    # from backends.bitcoind import Blockchain2Processor
+    # chain2_proc = Blockchain2Processor(config)
+    # dispatcher.register('blockchain2', chain2_proc)
+
     chain_proc = backend.BlockchainProcessor(config)
     dispatcher.register('blockchain', chain_proc)