Remove unused variable

This commit is contained in:
Daniel Lugo 2021-12-27 14:59:26 -04:00
parent 1b726e452a
commit b5b6a1350a

View file

@ -890,7 +890,7 @@ module.exports = async (
app.post('/api/lnd/wallet/existing', async (req, res) => {
try {
const { password, alias, accessSecret } = req.body
const { password, alias } = req.body
const healthResponse = await checkHealth()
const exists = await walletExists()
const allowUnlockedLND = process.env.ALLOW_UNLOCKED_LND === 'true'