Ok, *really* fix to use the correct bitcoinrpc module.
authorOvidiu Constantin <ovidiu.constantin@livigent.com>
Wed, 23 Nov 2011 13:06:07 +0000 (15:06 +0200)
committerOvidiu Constantin <ovidiu.constantin@livigent.com>
Wed, 23 Nov 2011 13:06:07 +0000 (15:06 +0200)
README
server.py

diff --git a/README b/README
index c3b5b53..17042b4 100644 (file)
--- a/README
+++ b/README
@@ -22,7 +22,7 @@ INSTALL
 
 2. install bitcoin-abe : https://github.com/jtobey/bitcoin-abe
 
-3. download bitcoin-python: https://github.com/toomanysecrets0/bitcoin-python
+3. download bitcoin-python: https://github.com/laanwj/bitcoin-python
    patch it with bitcoinrpc_connection.py.diff
 
 4. launch the server:  nohup python -u server.py > /var/log/electrum.log &
index 7ccee47..d0aa41d 100755 (executable)
--- a/server.py
+++ b/server.py
@@ -24,7 +24,7 @@ Todo:
 
 import time, socket, operator, thread, ast, sys,re
 import psycopg2, binascii
-import bitcoin
+import bitcoinrpc
 
 from Abe.abe import hash_to_address, decode_check_address
 from Abe.DataStore import DataStore as Datastore_class
@@ -278,8 +278,8 @@ class MyStore(Datastore_class):
 
 
 def send_tx(tx):
-    import bitcoin
-    conn = bitcoin.connect_to_local()
+    import bitcoinrpc
+    conn = bitcoinrpc.connect_to_local()
     try:
         v = conn.importtransaction(tx)
     except:
@@ -401,7 +401,7 @@ ds = BCDataStream.BCDataStream()
 
 def memorypool_update(store):
 
-    conn = bitcoin.connect_to_local()
+    conn = bitcoinrpc.connect_to_local()
     try:
         v = conn.getmemorypool()
     except: