fix for notifications
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
import sys
|
||||
import sys, time
|
||||
from electrum import Interface
|
||||
|
||||
try:
|
||||
@@ -9,15 +9,18 @@ except:
|
||||
print "usage: watch_address <bitcoin_address>"
|
||||
sys.exit(1)
|
||||
|
||||
i = Interface({'server':'electrum.novit.ro:50001:t'})
|
||||
i = Interface({'server':'ecdsa.org:50001:t'})
|
||||
i.start()
|
||||
i.send([('blockchain.address.subscribe',[addr])])
|
||||
i.send([('blockchain.address.subscribe',[addr])] )
|
||||
time.sleep(1)
|
||||
|
||||
while True:
|
||||
r = i.responses.get(True, 100000000000)
|
||||
r = i.get_response()
|
||||
method = r.get('method')
|
||||
if method == 'blockchain.address.subscribe':
|
||||
i.send([('blockchain.address.get_history',[addr])])
|
||||
#i.send([('blockchain.address.get_history',[addr])])
|
||||
print r
|
||||
|
||||
elif method == 'blockchain.address.get_history':
|
||||
confirmed = unconfirmed = 0
|
||||
h = r.get('result')
|
||||
|
||||
Reference in New Issue
Block a user