From b23dde057ba382da734c0c89381373a0ef97a123 Mon Sep 17 00:00:00 2001 From: mindesbunister Date: Sun, 16 Nov 2025 10:28:46 +0100 Subject: [PATCH] fix: Add needsVerification field to ClosePositionResult interface - Added optional needsVerification?: boolean to ClosePositionResult - Fixes TypeScript build error from commit c607a66 - Required for position close verification logic - Allows Position Manager to keep monitoring if close not yet propagated --- lib/drift/orders.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/drift/orders.ts b/lib/drift/orders.ts index 55a0347..f3a9397 100644 --- a/lib/drift/orders.ts +++ b/lib/drift/orders.ts @@ -45,6 +45,7 @@ export interface ClosePositionResult { closePrice?: number closedSize?: number realizedPnL?: number + needsVerification?: boolean error?: string }