Esempio n. 1
0
 def init_header_callback(self, future):
     try:
         dt = datetime.now()
         result = future.result()
         cnt = len(result)
         for idx in xrange(cnt / (80 * BLOCK_INTERVAL)):
             print idx
             BlockStore().connect_chunk(
                 idx, result[idx * 80 *
                             BLOCK_INTERVAL:idx * 80 * BLOCK_INTERVAL +
                             80 * BLOCK_INTERVAL])
         if cnt > cnt / (80 * BLOCK_INTERVAL) * (80 * BLOCK_INTERVAL):
             for idx in xrange((cnt - (cnt / (80 * BLOCK_INTERVAL) *
                                       (80 * BLOCK_INTERVAL))) / 80):
                 height = cnt / (80 * BLOCK_INTERVAL) * BLOCK_INTERVAL + idx
                 header = BlockStore().deserialize_header(
                     result[(cnt /
                             (80 * BLOCK_INTERVAL) * BLOCK_INTERVAL + idx) *
                            80:(cnt /
                                (80 * BLOCK_INTERVAL) * BLOCK_INTERVAL +
                                idx) * 80 + 80])
                 BlockStore().connect_header(header, height)
                 print height
         print datetime.now() - dt
         from electrumq.message.all import headers_subscribe
         NetWorkManager().add_message(
             headers_subscribe([]),
             callback=self.catch_up,
             subscribe=self.receive_header)  # do not have id
     except Exception as ex:
         print ex
         traceback.print_exc()
Esempio n. 2
0
 def init_header_callback(self, future):
     try:
         result = future.result()
         block_cnt = len(result) / 80
         for idx in xrange(block_cnt / BLOCK_INTERVAL):
             BlockStore().connect_chunk(
                 idx, result[idx * 80 *
                             BLOCK_INTERVAL:idx * 80 * BLOCK_INTERVAL +
                             80 * BLOCK_INTERVAL])
         if block_cnt > block_cnt / BLOCK_INTERVAL * BLOCK_INTERVAL:
             for idx in xrange(block_cnt - (block_cnt / BLOCK_INTERVAL *
                                            BLOCK_INTERVAL)):
                 height = block_cnt / BLOCK_INTERVAL * BLOCK_INTERVAL + idx
                 BlockStore().connect_raw_header(
                     result[(block_cnt / BLOCK_INTERVAL * BLOCK_INTERVAL +
                             idx) * 80:(block_cnt / BLOCK_INTERVAL *
                                        BLOCK_INTERVAL + idx) * 80 + 80],
                     height)
         NetWorkManager().add_message(
             headers_subscribe([]),
             callback=self.catch_up,
             subscribe=self.receive_header)  # do not have id
     except Exception as ex:
         logger.exception(ex.message)
         traceback.print_exc()
Esempio n. 3
0
 def test_connect_raw_header(self):
     set_testnet()
     data = open('../files/testnet_headers').read()
     idx = 0
     BlockStore().connect_chunk(
         idx,
         data[idx * 80 * BLOCK_INTERVAL:(idx + 1) * 80 * BLOCK_INTERVAL])
     idx = 1
     for i in xrange(BLOCK_INTERVAL - 1):
         BlockStore().connect_raw_header(
             data[idx * 80 * BLOCK_INTERVAL +
                  i * 80:(idx + 1) * 80 * BLOCK_INTERVAL + i * 80 + 80],
             idx * BLOCK_INTERVAL + i)
Esempio n. 4
0
 def test_connect_chunk(self):
     set_testnet()
     data = open('../files/testnet_headers').read()
     idx = 0
     BlockStore().connect_chunk(
         idx,
         data[idx * 80 * BLOCK_INTERVAL:(idx + 1) * 80 * BLOCK_INTERVAL])
Esempio n. 5
0
 def init_header(self):
     if BlockStore().height <= 0:
         # NetWorkManager().init_header(self.init_header_callback)
         NetWorkManager().add_message(GetHeaderFile([]),
                                      self.init_header_callback)
     else:
         NetWorkManager().add_message(
             headers_subscribe([]),
             callback=self.catch_up,
             subscribe=self.receive_header)  # do not have id
Esempio n. 6
0
 def catch_up(self, msg_id, msg, result):
     logger.debug('catchup %s, %s, %s' % (msg_id, msg, result))
     height = result['block_height']
     local_height = BlockStore().height
     if height > local_height:
         from electrumq.message.all import GetHeader, GetChunk
         next_height = min(
             height, local_height / BLOCK_INTERVAL * BLOCK_INTERVAL +
             BLOCK_INTERVAL - 1)
         logger.debug(
             'catch up trunc from %d to %d' %
             (next_height / BLOCK_INTERVAL, height / BLOCK_INTERVAL))
         for h in xrange(next_height / BLOCK_INTERVAL,
                         height / BLOCK_INTERVAL + 1):
             NetWorkManager().add_message(GetChunk([h]),
                                          self.get_trunc_callback)
Esempio n. 7
0
 def catch_up(self, msg_id, msg, result):
     print 'catchup', msg_id, msg, result
     height = result['block_height']
     local_height = BlockStore().height
     if height > local_height:
         from electrumq.message.all import GetChunk
         next_height = min(
             height, local_height / BLOCK_INTERVAL * BLOCK_INTERVAL + 2015)
         # logger.debug('catch up header from %d to %d' % (local_height + 1, next_height))
         # for h in xrange(local_height + 1, next_height + 1):
         #     # pass
         #     NetWorkManager().client.add_message(GetHeader([h]), self.connect_header2)
         logger.debug(
             'catch up trunc from %d to %d' %
             (next_height / BLOCK_INTERVAL, height / BLOCK_INTERVAL))
         for h in xrange(next_height / BLOCK_INTERVAL,
                         height / BLOCK_INTERVAL + 1):
             NetWorkManager().add_message(GetChunk([h]),
                                          self.get_trunc_callback)
Esempio n. 8
0
 def address_is_old(self, address, age_limit=2):
     tx_age = TxStore().get_max_tx_block(address)
     if tx_age > 0:
         return BlockStore().height - tx_age > age_limit
     else:
         return False
Esempio n. 9
0
 def get_local_height(self):
     """
     return last known height if we are offline
     """
     return BlockStore().height  # self.network.get_local_height() if self.network else self.stored_height
Esempio n. 10
0
 def get_block_root(self, height):
     return BlockStore().get_block_root(height)
Esempio n. 11
0
 def get_trunc_callback(self, msg_id, msg, data):
     BlockStore().connect_chunk(msg['params'][0], data.decode('hex'))
Esempio n. 12
0
 def get_header_callback(self, msg_id, msg, header):
     BlockStore().connect_header(header)
Esempio n. 13
0
 def receive_header(self, params):
     for h in params:
         block = header_dict_to_block_item(h)
         BlockStore().connect_block_item(block, h['block_height'])
Esempio n. 14
0
 def get_header_callback(self, msg_id, msg, header):
     block = BlockStore().header_dict_to_block_item(header)
     BlockStore().connect_header(block, header['block_height'])