diff --git a/src/modules/market/services/paymentMonitor.ts b/src/modules/market/services/paymentMonitor.ts index 2c2ec25..4880f55 100644 --- a/src/modules/market/services/paymentMonitor.ts +++ b/src/modules/market/services/paymentMonitor.ts @@ -168,8 +168,9 @@ class PaymentMonitorService { payment_hash: paymentHash } - // Uncomment when wallet context is available: - // const status = await invoiceService.checkPaymentStatus(paymentHash, walletId, adminKey) + // TODO: Implement when wallet context is available and PaymentMonitorService is migrated to DI: + // const invoiceService = injectService(SERVICE_TOKENS.INVOICE_SERVICE) as InvoiceService + // const status = await invoiceService.checkPaymentStatus(paymentHash, adminKey) // return status } catch (error) { console.error('Failed to get payment status:', error)