Initial novacoin support
[electrum-nvc.git] / scripts / get_history
index ac40b2b..871ab71 100755 (executable)
@@ -1,17 +1,16 @@
 #!/usr/bin/env python
 
 import sys
-from electrum import Interface
+from electrum_nvc import NetworkProxy, print_json
 
 try:
     addr = sys.argv[1]
-except:
-    print "usage: get_history <bitcoin_address>"
+except Exception:
+    print "usage: get_history <novacoin_address>"
     sys.exit(1)
 
-i = Interface({'server':'electrum.novit.ro:50001:t'})
-i.start()
-h = i.synchronous_get([ ('blockchain.address.get_history',[addr]) ])[0]
-for item in h:
-    print item['tx_hash'], item['value']
+n = NetworkProxy()
+n.start(start_daemon=True)
+h = n.synchronous_get([ ('blockchain.address.get_history',[addr]) ])[0]
+print_json(h)