Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions modules/express/src/typedRoutes/api/v2/unlockWallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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',
Expand Down
Loading