From 24a3963c0bd025fdf3a715a152381a9568ab19b9 Mon Sep 17 00:00:00 2001 From: Lokesh Chandra Date: Fri, 10 Apr 2026 08:56:45 +0530 Subject: [PATCH] docs(express): unlock wallet v2 Ticket: WCI-55 --- modules/express/src/typedRoutes/api/v2/unlockWallet.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/modules/express/src/typedRoutes/api/v2/unlockWallet.ts b/modules/express/src/typedRoutes/api/v2/unlockWallet.ts index 4dd05fd2c4..85df9a72a6 100644 --- a/modules/express/src/typedRoutes/api/v2/unlockWallet.ts +++ b/modules/express/src/typedRoutes/api/v2/unlockWallet.ts @@ -8,7 +8,7 @@ import { BitgoExpressError } from '../../schemas/error'; * @property {string} id - The ID of the wallet. */ export const UnlockLightningWalletParams = { - /** A lightning coin name (e.g, lnbtc, tlnbtc). */ + /** A lightning coin name. (e.g, lnbtc, tlnbtc). */ coin: t.string, /** The ID of the wallet. */ id: t.string, @@ -38,12 +38,10 @@ export const UnlockLightningWalletResponse = { } as const; /** - * Lightning - Unlock node - * * This is only used for self-custody lightning. Unlock the Lightning Network Daemon (LND) node with the given wallet password. * * @operationId express.lightning.unlockWallet - * @tag express + * @tag Express */ export const PostUnlockLightningWallet = httpRoute({ method: 'POST',