dev@locazia: fix misprint indexer

This commit is contained in:
user 2024-03-08 00:47:24 +03:00
parent a88dc2684c
commit 4be952571f
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ async def indexer_loop(platform_found: bool, seqno: int) -> [bool, int]:
platform_state = await toncenter.get_account(platform.address.to_string(1, 1, 1)) platform_state = await toncenter.get_account(platform.address.to_string(1, 1, 1))
if not platform_state.get('code'): if not platform_state.get('code'):
make_log("TON", "Platform contract is not deployed, skipping loop", level="info") make_log("TON", "Platform contract is not deployed, skipping loop", level="info")
await send_status("Indexer", "not working: platform is not deployed") await send_status("indexer", "not working: platform is not deployed")
return False, seqno return False, seqno
else: else:
platform_found = True platform_found = True