fix more bare excepts
[electrum-nvc.git] / scripts / get_history
index 9e0b248..f0327da 100755 (executable)
@@ -1,17 +1,17 @@
 #!/usr/bin/env python
 
 import sys
-from electrum import Interface
+from electrum import Network
 
 try:
     addr = sys.argv[1]
-except:
+except Exception:
     print "usage: get_history <bitcoin_address>"
     sys.exit(1)
 
-i = Interface({'server':'webbtc.com:50001:t'})
-i.start()
-h = i.synchronous_get([ ('blockchain.address.get_history',[addr]) ])[0]
+n = Network()
+n.start(wait=True)
+h = n.synchronous_get([ ('blockchain.address.get_history',[addr]) ])[0]
 for item in h:
     print item['tx_hash'], item['height']