1
0

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')