From b5b6a1350a57ed32b52cd2113b4d15aa3f89ef36 Mon Sep 17 00:00:00 2001 From: Daniel Lugo Date: Mon, 27 Dec 2021 14:59:26 -0400 Subject: [PATCH] Remove unused variable --- src/routes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes.js b/src/routes.js index bd94cfa2..fc7bae83 100644 --- a/src/routes.js +++ b/src/routes.js @@ -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'