Skip to content
This repository was archived by the owner on Mar 18, 2026. It is now read-only.

Commit da4913a

Browse files
fix chain state monitoring
1 parent 3d05d3f commit da4913a

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

app/services/infrastructure/job_management/tasks/chain_state_monitor.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -872,6 +872,20 @@ async def _execute_impl(self, context: JobContext) -> List[ChainStateMonitorResu
872872
burn_block_height,
873873
)
874874

875+
logger.info(
876+
"Generated chainhook message for block processing",
877+
extra={
878+
"task": "chain_state_monitor",
879+
"block_height": height,
880+
"block_hash": block_hash,
881+
"burn_block_height": burn_block_height,
882+
"transaction_count": transactions.total,
883+
"chainhook_uuid": chainhook_data.get(
884+
"chainhook", {}
885+
).get("uuid"),
886+
},
887+
)
888+
875889
# Process through chainhook service
876890
result = await self.chainhook_service.process(
877891
chainhook_data

0 commit comments

Comments
 (0)