Remove unused variable

This commit is contained in:
Daniel Lugo 2021-12-27 14:46:28 -04:00
parent f09fc2be66
commit 9c698a38e0

View file

@ -731,7 +731,7 @@ module.exports = async (
app.post('/api/lnd/wallet', async (req, res) => { app.post('/api/lnd/wallet', async (req, res) => {
try { try {
const { walletUnlocker } = LightningServices.services const { walletUnlocker } = LightningServices.services
const { password, alias, invite } = req.body const { password, alias } = req.body
const healthResponse = await checkHealth() const healthResponse = await checkHealth()
if (!alias) { if (!alias) {
return res.status(400).json({ return res.status(400).json({