File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
modules/express/src/typedRoutes/api Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ export const ExpressApi = apiSpec({
4848 } ,
4949 'express.lightning.unlockWallet' : {
5050 post : PostUnlockLightningWallet ,
51+ } ,
5152 'express.verifycoinaddress' : {
5253 post : PostVerifyCoinAddress ,
5354 } ,
Original file line number Diff line number Diff line change @@ -10,15 +10,15 @@ import { BitgoExpressError } from '../../schemas/error';
1010export const UnlockLightningWalletParams = {
1111 coin : t . string ,
1212 id : t . string ,
13- } ;
13+ } as const ;
1414
1515/**
1616 * Request body for unlocking a lightning wallet
1717 * @property {string } passphrase - Passphrase to unlock the lightning wallet.
1818 */
1919export const UnlockLightningWalletBody = {
2020 passphrase : t . string ,
21- } ;
21+ } as const ;
2222
2323/**
2424 * Lightning - Unlock node
You can’t perform that action at this time.
0 commit comments