From 67ac8781604ee0f80dc321f50f9cbd8d1564a8c1 Mon Sep 17 00:00:00 2001 From: Gianfranco Date: Mon, 12 Jan 2026 09:09:46 -0300 Subject: [PATCH] quickfix subscan checks for phase --- .../api/services/phases/handlers/distribute-fees-handler.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/api/src/api/services/phases/handlers/distribute-fees-handler.ts b/apps/api/src/api/services/phases/handlers/distribute-fees-handler.ts index dce94476e..ad7fbcd42 100644 --- a/apps/api/src/api/services/phases/handlers/distribute-fees-handler.ts +++ b/apps/api/src/api/services/phases/handlers/distribute-fees-handler.ts @@ -135,7 +135,8 @@ export class DistributeFeesHandler extends BasePhaseHandler { if (status === ExtrinsicStatus.Success) { return; } else if (status === ExtrinsicStatus.Fail) { - throw this.createUnrecoverableError(`Extrinsic failed for hash ${extrinsicHash}`); + //throw this.createUnrecoverableError(`Extrinsic failed for hash ${extrinsicHash}`); + continue; } else if (status === ExtrinsicStatus.Undefined) { await new Promise(resolve => setTimeout(resolve, pollIntervalMs)); continue;