File tree Expand file tree Collapse file tree 1 file changed +0
-2
lines changed
packages/examples/cvat/recording-oracle/src/endpoints Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Original file line number Diff line number Diff line change 11from fastapi import APIRouter , Header , HTTPException , Request
22
33import src .services .webhook as oracle_db_service
4- from src .chain .escrow import validate_escrow
54from src .db import SessionLocal
65from src .schemas .webhook import OracleWebhook , OracleWebhookResponse
76from src .validators .signature import validate_oracle_webhook_signature
@@ -17,7 +16,6 @@ async def receive_oracle_webhook(
1716) -> OracleWebhookResponse :
1817 try :
1918 sender = await validate_oracle_webhook_signature (request , human_signature , webhook )
20- validate_escrow (webhook .chain_id , webhook .escrow_address )
2119
2220 with SessionLocal .begin () as session :
2321 webhook_id = oracle_db_service .inbox .create_webhook (
You can’t perform that action at this time.
0 commit comments