Skip to content

Commit

Permalink
update tonlibjson.so
Browse files Browse the repository at this point in the history
  • Loading branch information
dungeon-master-666 committed Mar 15, 2023
1 parent 28b9c27 commit dc6f2aa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Binary file modified config/libtonlibjson.so.0.5
Binary file not shown.
7 changes: 6 additions & 1 deletion indexer/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,12 @@ async def process_mc_seqno(self, seqno: int):
raise ee

async def fetch_mc_seqno(self, seqno: int):
blocks, headers, transactions = await self.get_raw_info(seqno)
try:
blocks, headers, transactions = await self.get_raw_info(seqno)
except Exception as ee:
logger.warning(f'Failed to fetch block(seqno={seqno}): {traceback.format_exc()}')
raise ee

return blocks, headers, transactions

async def insert_mc_seqno(self, seqno, bht):
Expand Down

0 comments on commit dc6f2aa

Please sign in to comment.