diff --git a/apps/web/lib/coinpay.ts b/apps/web/lib/coinpay.ts index 8dca2fe..c0bef16 100644 --- a/apps/web/lib/coinpay.ts +++ b/apps/web/lib/coinpay.ts @@ -46,6 +46,7 @@ export async function createCoinpayPayment(args: { } return { ok: true, payment: data.payment }; } catch (err) { + console.error(`[coinpay] create payment failed:`, (err as Error).message); return { ok: false, error: (err as Error).message }; } } @@ -57,10 +58,14 @@ export async function getCoinpayPayment(id: string): Promise