catch keyboard interrupt

This commit is contained in:
ThomasV 2012-06-15 08:29:52 +02:00
parent 1084abeb53
commit e41966a37b
2 changed files with 8 additions and 2 deletions

5
blocks
View File

@ -8,6 +8,9 @@ i.start()
i.send([('blockchain.numblocks.subscribe',[])])
while True:
r = i.responses.get(True, 100000000000)
try:
r = i.responses.get(True, 100000000000)
except KeyboardInterrupt:
break
if r.get('method') == 'blockchain.numblocks.subscribe':
print r.get('result')

View File

@ -15,7 +15,10 @@ i.start()
i.send([('blockchain.address.get_history',[addr])])
while True:
r = i.responses.get(True, 100000000000)
try:
r = i.responses.get(True, 100000000000)
except KeyboardInterrupt:
break
method = r.get('method')
if method == 'blockchain.address.get_history':
confirmed = unconfirmed = 0