fix
[electrum-server.git] / backends / bitcoind / blockchain_processor.py
1 from json import dumps, loads
2 import leveldb, urllib
3 import deserialize
4 import ast, time, threading, hashlib
5 from Queue import Queue
6 import traceback, sys, os, random
7
8
9
10 Hash = lambda x: hashlib.sha256(hashlib.sha256(x).digest()).digest()
11 hash_encode = lambda x: x[::-1].encode('hex')
12 hash_decode = lambda x: x.decode('hex')[::-1]
13
14
15
16 def rev_hex(s):
17     return s.decode('hex')[::-1].encode('hex')
18
19
20 def int_to_hex(i, length=1):
21     s = hex(i)[2:].rstrip('L')
22     s = "0"*(2*length - len(s)) + s
23     return rev_hex(s)
24
25 def header_to_string(res):
26     pbh = res.get('prev_block_hash')
27     if pbh is None: pbh = '0'*64
28     s = int_to_hex(res.get('version'),4) \
29         + rev_hex(pbh) \
30         + rev_hex(res.get('merkle_root')) \
31         + int_to_hex(int(res.get('timestamp')),4) \
32         + int_to_hex(int(res.get('bits')),4) \
33         + int_to_hex(int(res.get('nonce')),4)
34     return s
35
36 def header_from_string( s):
37     hex_to_int = lambda s: eval('0x' + s[::-1].encode('hex'))
38     h = {}
39     h['version'] = hex_to_int(s[0:4])
40     h['prev_block_hash'] = hash_encode(s[4:36])
41     h['merkle_root'] = hash_encode(s[36:68])
42     h['timestamp'] = hex_to_int(s[68:72])
43     h['bits'] = hex_to_int(s[72:76])
44     h['nonce'] = hex_to_int(s[76:80])
45     return h
46
47
48
49
50 from processor import Processor, print_log
51
52 class BlockchainProcessor(Processor):
53
54     def __init__(self, config, shared):
55         Processor.__init__(self)
56
57         self.shared = shared
58         self.up_to_date = False
59         self.watched_addresses = []
60         self.history_cache = {}
61         self.chunk_cache = {}
62         self.cache_lock = threading.Lock()
63         self.headers_data = ''
64
65         self.mempool_addresses = {}
66         self.mempool_hist = {}
67         self.mempool_hashes = []
68         self.mempool_lock = threading.Lock()
69
70         self.address_queue = Queue()
71         self.dbpath = config.get('leveldb', 'path')
72
73         self.dblock = threading.Lock()
74         try:
75             self.db = leveldb.LevelDB(self.dbpath)
76         except:
77             traceback.print_exc(file=sys.stdout)
78             self.shared.stop()
79
80         self.bitcoind_url = 'http://%s:%s@%s:%s/' % (
81             config.get('bitcoind','user'),
82             config.get('bitcoind','password'),
83             config.get('bitcoind','host'),
84             config.get('bitcoind','port'))
85
86         self.height = 0
87         self.is_test = False
88         self.sent_height = 0
89         self.sent_header = None
90
91
92         try:
93             hist = self.deserialize(self.db.Get('height'))
94             self.last_hash, self.height, _ = hist[0] 
95             print_log( "hist", hist )
96         except:
97             #traceback.print_exc(file=sys.stdout)
98             print_log('initializing database')
99             self.height = 0
100             self.last_hash = '000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f'
101
102         # catch_up headers
103         self.init_headers(self.height)
104
105         threading.Timer(0, lambda: self.catch_up(sync=False)).start()
106         while not shared.stopped() and not self.up_to_date:
107             try:
108                 time.sleep(1)
109             except:
110                 print "keyboard interrupt: stopping threads"
111                 shared.stop()
112                 sys.exit(0)
113
114         print_log( "blockchain is up to date." )
115
116         threading.Timer(10, self.main_iteration).start()
117
118
119
120     def bitcoind(self, method, params=[]):
121         postdata = dumps({"method": method, 'params': params, 'id':'jsonrpc'})
122         respdata = urllib.urlopen(self.bitcoind_url, postdata).read()
123         r = loads(respdata)
124         if r['error'] != None:
125             raise BaseException(r['error'])
126         return r.get('result')
127     
128
129     def serialize(self, h):
130         s = ''
131         for txid, txpos, height in h:
132             s += txid + int_to_hex(txpos, 4) + int_to_hex(height, 4)
133         return s.decode('hex')
134
135
136     def deserialize(self, s):
137         h = []
138         while s:
139             txid = s[0:32].encode('hex')
140             txpos = int( rev_hex( s[32:36].encode('hex') ), 16 )
141             height = int( rev_hex( s[36:40].encode('hex') ), 16 )
142             h.append( ( txid, txpos, height ) )
143             s = s[40:]
144         return h
145
146
147     def block2header(self, b):
148         return {"block_height":b.get('height'), "version":b.get('version'), "prev_block_hash":b.get('previousblockhash'), 
149                 "merkle_root":b.get('merkleroot'), "timestamp":b.get('time'), "bits":int(b.get('bits'),16), "nonce":b.get('nonce')}
150
151
152     def get_header(self, height):
153         block_hash = self.bitcoind('getblockhash', [height])
154         b = self.bitcoind('getblock', [block_hash])
155         return self.block2header(b)
156     
157
158     def init_headers(self, db_height):
159         self.chunk_cache = {}
160         self.headers_filename = os.path.join( self.dbpath, 'blockchain_headers')
161
162         if os.path.exists(self.headers_filename):
163             height = os.path.getsize(self.headers_filename)/80 - 1   # the current height
164             if height > 0:
165                 prev_hash = self.hash_header(self.read_header(height))
166             else:
167                 prev_hash = None
168         else:
169             open(self.headers_filename,'wb').close()
170             prev_hash = None
171             height = -1
172
173         if height < db_height:
174             print_log( "catching up missing headers:", height, db_height)
175
176         try:
177             while height < db_height:
178                 height = height + 1
179                 header = self.get_header(height)
180                 if height>1: 
181                     assert prev_hash == header.get('prev_block_hash')
182                 self.write_header(header, sync=False)
183                 prev_hash = self.hash_header(header)
184                 if height%1000==0: print_log("headers file:",height)
185         except KeyboardInterrupt:
186             self.flush_headers()
187             sys.exit()
188
189         self.flush_headers()
190
191
192     def hash_header(self, header):
193         return rev_hex(Hash(header_to_string(header).decode('hex')).encode('hex'))
194
195
196     def read_header(self, block_height):
197         if os.path.exists(self.headers_filename):
198             f = open(self.headers_filename,'rb')
199             f.seek(block_height*80)
200             h = f.read(80)
201             f.close()
202             if len(h) == 80:
203                 h = header_from_string(h)
204                 return h
205
206
207     def read_chunk(self, index):
208         f = open(self.headers_filename,'rb')
209         f.seek(index*2016*80)
210         chunk = f.read(2016*80)
211         f.close()
212         return chunk.encode('hex')
213
214
215     def write_header(self, header, sync=True):
216         if not self.headers_data:
217             self.headers_offset = header.get('block_height')
218
219         self.headers_data += header_to_string(header).decode('hex')
220         if sync or len(self.headers_data) > 40*100:
221             self.flush_headers()
222
223     def pop_header(self):
224         # we need to do this only if we have not flushed
225         if self.headers_data:
226             self.headers_data = self.headers_data[:-40]
227
228     def flush_headers(self):
229         if not self.headers_data: return
230         f = open(self.headers_filename,'rb+')
231         f.seek(self.headers_offset*80)
232         f.write(self.headers_data)
233         f.close()
234         self.headers_data = ''
235
236
237     def get_chunk(self, i):
238         # store them on disk; store the current chunk in memory
239         chunk = self.chunk_cache.get(i)
240         if not chunk:
241             chunk = self.read_chunk(i)
242             self.chunk_cache[i] = chunk
243         return chunk
244
245
246     def get_transaction(self, txid, block_height=-1, is_coinbase = False):
247         raw_tx = self.bitcoind('getrawtransaction', [txid, 0, block_height])
248         vds = deserialize.BCDataStream()
249         vds.write(raw_tx.decode('hex'))
250         out = deserialize.parse_Transaction(vds, is_coinbase)
251         return out
252
253
254     def get_history(self, addr, cache_only=False):
255         with self.cache_lock: hist = self.history_cache.get( addr )
256         if hist is not None: return hist
257         if cache_only: return -1
258
259         with self.dblock:
260             try:
261                 hist = self.deserialize(self.db.Get(addr))
262                 is_known = True
263             except: 
264                 hist = []
265                 is_known = False
266
267         # should not be necessary
268         hist.sort( key=lambda tup: tup[1])
269         # check uniqueness too...
270
271         # add memory pool
272         with self.mempool_lock:
273             for txid in self.mempool_hist.get(addr,[]):
274                 hist.append((txid, 0, 0))
275
276         hist = map(lambda x: {'tx_hash':x[0], 'height':x[2]}, hist)
277         # add something to distinguish between unused and empty addresses
278         if hist == [] and is_known: hist = ['*']
279
280         with self.cache_lock: self.history_cache[addr] = hist
281         return hist
282
283
284     def get_status(self, addr, cache_only=False):
285         tx_points = self.get_history(addr, cache_only)
286         if cache_only and tx_points == -1: return -1
287
288         if not tx_points: return None
289         if tx_points == ['*']: return '*'
290         status = ''
291         for tx in tx_points:
292             status += tx.get('tx_hash') + ':%d:' % tx.get('height')
293         return hashlib.sha256( status ).digest().encode('hex')
294
295
296     def get_merkle(self, tx_hash, height):
297
298         block_hash = self.bitcoind('getblockhash', [height])
299         b = self.bitcoind('getblock', [block_hash])
300         tx_list = b.get('tx')
301         tx_pos = tx_list.index(tx_hash)
302         
303         merkle = map(hash_decode, tx_list)
304         target_hash = hash_decode(tx_hash)
305         s = []
306         while len(merkle) != 1:
307             if len(merkle)%2: merkle.append( merkle[-1] )
308             n = []
309             while merkle:
310                 new_hash = Hash( merkle[0] + merkle[1] )
311                 if merkle[0] == target_hash:
312                     s.append( hash_encode( merkle[1]))
313                     target_hash = new_hash
314                 elif merkle[1] == target_hash:
315                     s.append( hash_encode( merkle[0]))
316                     target_hash = new_hash
317                 n.append( new_hash )
318                 merkle = merkle[2:]
319             merkle = n
320
321         return {"block_height":height, "merkle":s, "pos":tx_pos}
322
323         
324
325
326     def add_to_history(self, addr, tx_hash, tx_pos, tx_height):
327
328         # keep it sorted
329         s = (tx_hash + int_to_hex(tx_pos, 4) + int_to_hex(tx_height, 4)).decode('hex')
330
331         serialized_hist = self.batch_list[addr] 
332
333         l = len(serialized_hist)/40
334         for i in range(l-1, -1, -1):
335             item = serialized_hist[40*i:40*(i+1)]
336             item_height = int( rev_hex( item[36:40].encode('hex') ), 16 )
337             if item_height < tx_height:
338                 serialized_hist = serialized_hist[0:40*(i+1)] + s + serialized_hist[40*(i+1):]
339                 break
340         else:
341             serialized_hist = s + serialized_hist
342
343         self.batch_list[addr] = serialized_hist
344
345         # backlink
346         txo = (tx_hash + int_to_hex(tx_pos, 4)).decode('hex')
347         self.batch_txio[txo] = addr
348
349
350     def remove_from_history(self, addr, tx_hash, tx_pos):
351                     
352         txi = (tx_hash + int_to_hex(tx_pos, 4)).decode('hex')
353
354         if addr is None:
355             try:
356                 addr = self.batch_txio[txi]
357             except:
358                 raise BaseException(tx_hash, tx_pos)
359         
360         serialized_hist = self.batch_list[addr]
361
362         l = len(serialized_hist)/40
363         for i in range(l):
364             item = serialized_hist[40*i:40*(i+1)]
365             if item[0:36] == txi:
366                 height = int( rev_hex( item[36:40].encode('hex') ), 16 )
367                 serialized_hist = serialized_hist[0:40*i] + serialized_hist[40*(i+1):]
368                 break
369         else:
370             hist = self.deserialize(serialized_hist)
371             raise BaseException("prevout not found", addr, hist, tx_hash, tx_pos)
372
373         self.batch_list[addr] = serialized_hist
374         return height, addr
375
376
377     def deserialize_block(self, block):
378         txlist = block.get('tx')
379         tx_hashes = []  # ordered txids
380         txdict = {}     # deserialized tx
381         is_coinbase = True
382         for raw_tx in txlist:
383             tx_hash = hash_encode(Hash(raw_tx.decode('hex')))
384             tx_hashes.append(tx_hash)
385             vds = deserialize.BCDataStream()
386             vds.write(raw_tx.decode('hex'))
387             tx = deserialize.parse_Transaction(vds, is_coinbase)
388             txdict[tx_hash] = tx
389             is_coinbase = False
390         return tx_hashes, txdict
391
392     def get_undo_info(self, height):
393         s = self.db.Get("undo%d"%(height%100))
394         return eval(s)
395
396     def write_undo_info(self, batch, height, undo_info):
397         batch.Put("undo%d"%(height%100), repr(undo_info))
398
399
400     def import_block(self, block, block_hash, block_height, sync, revert=False):
401
402         self.batch_list = {}  # address -> history
403         self.batch_txio = {}  # transaction i/o -> address
404
405         block_inputs = []
406         block_outputs = []
407         addr_to_read = []
408
409         # deserialize transactions
410         t0 = time.time()
411         tx_hashes, txdict = self.deserialize_block(block)
412
413         t00 = time.time()
414
415
416         if not revert:
417             # read addresses of tx inputs
418             for tx in txdict.values():
419                 for x in tx.get('inputs'):
420                     txi = (x.get('prevout_hash') + int_to_hex(x.get('prevout_n'), 4)).decode('hex')
421                     block_inputs.append(txi)
422
423             block_inputs.sort()
424             for txi in block_inputs:
425                 try:
426                     addr = self.db.Get(txi)
427                 except:
428                     # the input could come from the same block
429                     continue
430                 self.batch_txio[txi] = addr
431                 addr_to_read.append(addr)
432
433         else:
434             for txid, tx in txdict.items():
435                 for x in tx.get('outputs'):
436                     txo = (txid + int_to_hex(x.get('index'), 4)).decode('hex')
437                     block_outputs.append(txo)
438             
439
440
441         # read histories of addresses
442         for txid, tx in txdict.items():
443             for x in tx.get('outputs'):
444                 addr_to_read.append(x.get('address'))
445
446         addr_to_read.sort()
447         for addr in addr_to_read:
448             try:
449                 self.batch_list[addr] = self.db.Get(addr)
450             except: 
451                 self.batch_list[addr] = ''
452
453
454         if revert: 
455             undo_info = self.get_undo_info(block_height)
456             print "undo", block_height, undo_info
457         else: undo_info = {}
458
459         # process
460         t1 = time.time()
461
462         for txid in tx_hashes: # must be ordered
463             tx = txdict[txid]
464             if not revert:
465
466                 undo = []
467                 for x in tx.get('inputs'):
468                     prevout_height, prevout_addr = self.remove_from_history( None, x.get('prevout_hash'), x.get('prevout_n'))
469                     undo.append( (prevout_height, prevout_addr) )
470                 undo_info[txid] = undo
471
472                 for x in tx.get('outputs'):
473                     self.add_to_history( x.get('address'), txid, x.get('index'), block_height)
474                     
475             else:
476                 for x in tx.get('outputs'):
477                     self.remove_from_history( x.get('address'), txid, x.get('index'))
478
479                 i = 0
480                 for x in tx.get('inputs'):
481                     prevout_height, prevout_addr = undo_info.get(txid)[i]
482                     i += 1
483
484                     # read the history into batch list
485                     self.batch_list[prevout_addr] = self.db.Get(prevout_addr)
486                     # re-add them to the history
487                     self.add_to_history( prevout_addr, x.get('prevout_hash'), x.get('prevout_n'), prevout_height)
488                     print "new hist for", prevout_addr, self.deserialize(self.batch_list[prevout_addr])
489
490         # write
491         max_len = 0
492         max_addr = ''
493         t2 = time.time()
494
495         batch = leveldb.WriteBatch()
496         for addr, serialized_hist in self.batch_list.items():
497             batch.Put(addr, serialized_hist)
498             l = len(serialized_hist)
499             if l > max_len:
500                 max_len = l
501                 max_addr = addr
502
503         if not revert:
504             # add new created outputs
505             for txio, addr in self.batch_txio.items():
506                 batch.Put(txio, addr)
507             # delete spent inputs
508             for txi in block_inputs:
509                 batch.Delete(txi)
510             # add undo info 
511             self.write_undo_info(batch, block_height, undo_info)
512         else:
513             # restore spent inputs
514             for txio, addr in self.batch_txio.items():
515                 batch.Put(txio, addr)
516             # delete spent outputs
517             for txo in block_outputs:
518                 batch.Delete(txo)
519
520
521         # add the max
522         batch.Put('height', self.serialize( [(block_hash, block_height, 0)] ) )
523
524         # actual write
525         self.db.Write(batch, sync = sync)
526
527         t3 = time.time()
528         if t3 - t0 > 10 and not sync: 
529             print_log("block", block_height, 
530                       "parse:%0.2f "%(t00 - t0), 
531                       "read:%0.2f "%(t1 - t00), 
532                       "proc:%.2f "%(t2-t1), 
533                       "write:%.2f "%(t3-t2), 
534                       "max:", max_len, max_addr)
535
536         for addr in self.batch_list.keys(): self.invalidate_cache(addr)
537
538
539
540     def add_request(self, request):
541         # see if we can get if from cache. if not, add to queue
542         if self.process( request, cache_only = True) == -1:
543             self.queue.put(request)
544
545
546
547     def process(self, request, cache_only = False):
548         #print "abe process", request
549
550         message_id = request['id']
551         method = request['method']
552         params = request.get('params',[])
553         result = None
554         error = None
555
556         if method == 'blockchain.numblocks.subscribe':
557             result = self.height
558
559         elif method == 'blockchain.headers.subscribe':
560             result = self.header
561
562         elif method == 'blockchain.address.subscribe':
563             try:
564                 address = params[0]
565                 result = self.get_status(address, cache_only)
566                 self.watch_address(address)
567             except BaseException, e:
568                 error = str(e) + ': ' + address
569                 print_log( "error:", error )
570
571         elif method == 'blockchain.address.subscribe2':
572             try:
573                 address = params[0]
574                 result = self.get_status(address, cache_only)
575                 self.watch_address(address)
576             except BaseException, e:
577                 error = str(e) + ': ' + address
578                 print_log( "error:", error )
579
580         elif method == 'blockchain.address.get_history2':
581             try:
582                 address = params[0]
583                 result = self.get_history( address, cache_only )
584             except BaseException, e:
585                 error = str(e) + ': ' + address
586                 print_log( "error:", error )
587
588         elif method == 'blockchain.block.get_header':
589             if cache_only: 
590                 result = -1
591             else:
592                 try:
593                     height = params[0]
594                     result = self.get_header( height ) 
595                 except BaseException, e:
596                     error = str(e) + ': %d'% height
597                     print_log( "error:", error )
598                     
599         elif method == 'blockchain.block.get_chunk':
600             if cache_only:
601                 result = -1
602             else:
603                 try:
604                     index = params[0]
605                     result = self.get_chunk( index ) 
606                 except BaseException, e:
607                     error = str(e) + ': %d'% index
608                     print_log( "error:", error)
609
610         elif method == 'blockchain.transaction.broadcast':
611             txo = self.bitcoind('sendrawtransaction', params)
612             print_log( "sent tx:", txo )
613             result = txo 
614
615         elif method == 'blockchain.transaction.get_merkle':
616             if cache_only:
617                 result = -1
618             else:
619                 try:
620                     tx_hash = params[0]
621                     tx_height = params[1]
622                     result = self.get_merkle(tx_hash, tx_height) 
623                 except BaseException, e:
624                     error = str(e) + ': ' + tx_hash
625                     print_log( "error:", error )
626                     
627         elif method == 'blockchain.transaction.get':
628             try:
629                 tx_hash = params[0]
630                 height = params[1]
631                 result = self.bitcoind('getrawtransaction', [tx_hash, 0, height] ) 
632             except BaseException, e:
633                 error = str(e) + ': ' + tx_hash
634                 print_log( "error:", error )
635
636         else:
637             error = "unknown method:%s"%method
638
639         if cache_only and result == -1: return -1
640
641         if error:
642             response = { 'id':message_id, 'error':error }
643             self.push_response(response)
644         elif result != '':
645             response = { 'id':message_id, 'result':result }
646             self.push_response(response)
647
648
649     def watch_address(self, addr):
650         if addr not in self.watched_addresses:
651             self.watched_addresses.append(addr)
652
653
654
655     def catch_up(self, sync = True):
656
657         t1 = time.time()
658
659         while not self.shared.stopped():
660
661             # are we done yet?
662             info = self.bitcoind('getinfo')
663             bitcoind_height = info.get('blocks')
664             bitcoind_block_hash = self.bitcoind('getblockhash', [bitcoind_height])
665             if self.last_hash == bitcoind_block_hash: 
666                 self.up_to_date = True
667                 break
668
669             # not done..
670             self.up_to_date = False
671             next_block_hash = self.bitcoind('getblockhash', [self.height+1])
672             next_block = self.bitcoind('getblock', [next_block_hash, 1])
673
674             revert = (random.randint(1, 100)==1) if self.is_test else False
675             if (next_block.get('previousblockhash') == self.last_hash) and not revert:
676
677                 self.import_block(next_block, next_block_hash, self.height+1, sync)
678                 self.height = self.height + 1
679                 self.write_header(self.block2header(next_block), sync)
680                 self.last_hash = next_block_hash
681
682                 if (self.height)%100 == 0 and not sync: 
683                     t2 = time.time()
684                     print_log( "catch_up: block %d (%.3fs)"%( self.height, t2 - t1 ) )
685                     t1 = t2
686                     
687             else:
688                 # revert current block
689                 block = self.bitcoind('getblock', [self.last_hash, 1])
690                 print_log( "blockchain reorg", self.height, block.get('previousblockhash'), self.last_hash )
691                 self.import_block(block, self.last_hash, self.height, sync, revert=True)
692                 self.pop_header()
693                 self.flush_headers()
694
695                 self.height = self.height -1
696
697                 # read previous header from disk
698                 self.header = self.read_header(self.height)
699                 self.last_hash = self.hash_header(self.header)
700         
701
702         self.header = self.block2header(self.bitcoind('getblock', [self.last_hash]))
703
704
705
706             
707     def memorypool_update(self):
708
709         mempool_hashes = self.bitcoind('getrawmempool')
710
711         for tx_hash in mempool_hashes:
712             if tx_hash in self.mempool_hashes: continue
713
714             tx = self.get_transaction(tx_hash)
715             if not tx: continue
716
717             for x in tx.get('inputs'):
718                 txi = (x.get('prevout_hash') + int_to_hex(x.get('prevout_n'), 4)).decode('hex')
719                 try:
720                     addr = self.db.Get(txi)    
721                 except:
722                     continue
723                 l = self.mempool_addresses.get(tx_hash, [])
724                 if addr not in l: 
725                     l.append( addr )
726                     self.mempool_addresses[tx_hash] = l
727
728             for x in tx.get('outputs'):
729                 addr = x.get('address')
730                 l = self.mempool_addresses.get(tx_hash, [])
731                 if addr not in l: 
732                     l.append( addr )
733                     self.mempool_addresses[tx_hash] = l
734
735             self.mempool_hashes.append(tx_hash)
736
737         # remove older entries from mempool_hashes
738         self.mempool_hashes = mempool_hashes
739
740         # remove deprecated entries from mempool_addresses
741         for tx_hash, addresses in self.mempool_addresses.items():
742             if tx_hash not in self.mempool_hashes:
743                 self.mempool_addresses.pop(tx_hash)
744
745         # rebuild histories
746         new_mempool_hist = {}
747         for tx_hash, addresses in self.mempool_addresses.items():
748             for addr in addresses:
749                 h = new_mempool_hist.get(addr, [])
750                 if tx_hash not in h: 
751                     h.append( tx_hash )
752                 new_mempool_hist[addr] = h
753
754         for addr in new_mempool_hist.keys():
755             if addr in self.mempool_hist.keys():
756                 if self.mempool_hist[addr] != new_mempool_hist[addr]: 
757                     self.invalidate_cache(addr)
758             else:
759                 self.invalidate_cache(addr)
760
761         with self.mempool_lock:
762             self.mempool_hist = new_mempool_hist
763
764
765
766     def invalidate_cache(self, address):
767         with self.cache_lock:
768             if self.history_cache.has_key(address):
769                 print_log( "cache: invalidating", address )
770                 self.history_cache.pop(address)
771
772         if address in self.watched_addresses:
773             self.address_queue.put(address)
774
775
776
777     def main_iteration(self):
778
779         if self.shared.stopped(): 
780             print_log( "blockchain processor terminating" )
781             return
782
783         with self.dblock:
784             t1 = time.time()
785             self.catch_up()
786             t2 = time.time()
787
788         self.memorypool_update()
789         t3 = time.time()
790         # print "mempool:", len(self.mempool_addresses), len(self.mempool_hist), "%.3fs"%(t3 - t2)
791
792
793         if self.sent_height != self.height:
794             self.sent_height = self.height
795             self.push_response({ 'id': None, 'method':'blockchain.numblocks.subscribe', 'params':[self.height] })
796
797         if self.sent_header != self.header:
798             print_log( "blockchain: %d (%.3fs)"%( self.height, t2 - t1 ) )
799             self.sent_header = self.header
800             self.push_response({ 'id': None, 'method':'blockchain.headers.subscribe', 'params':[self.header] })
801
802         while True:
803             try:
804                 addr = self.address_queue.get(False)
805             except:
806                 break
807             if addr in self.watched_addresses:
808                 status = self.get_status( addr )
809                 self.push_response({ 'id': None, 'method':'blockchain.address.subscribe', 'params':[addr, status] })
810                 self.push_response({ 'id': None, 'method':'blockchain.address.subscribe2', 'params':[addr, status] })
811
812
813         if not self.shared.stopped(): 
814             threading.Timer(10, self.main_iteration).start()
815         else:
816             print_log( "blockchain processor terminating" )
817
818
819
820