From c03e1478b45edb15b6921a6a3ba0b3adc8237c51 Mon Sep 17 00:00:00 2001 From: Daniel Lugo Date: Thu, 10 Sep 2020 20:15:46 -0400 Subject: [PATCH] post instead of get --- src/routes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes.js b/src/routes.js index dc81fe89..9a907a02 100644 --- a/src/routes.js +++ b/src/routes.js @@ -2987,7 +2987,7 @@ module.exports = async ( }) }) - ap.get('/api/lnd/cb/:methodName', (req, res) => { + ap.post('/api/lnd/cb/:methodName', (req, res) => { const { lightning } = LightningServices.services const { methodName } = req.params const args = req.body