This commit is contained in:
Overtorment 2021-04-05 12:14:41 +01:00
parent 17e9bd30c8
commit 30c8bb2d94

View File

@ -505,7 +505,6 @@ router.get('/getchaninfo/:chanid', async function (req, res) {
if (lightningDescribeGraph && lightningDescribeGraph.edges) {
for (const edge of lightningDescribeGraph.edges) {
console.log('edge.channel_id = ' + edge.channel_id);
if (edge.channel_id == req.params.chanid) {
return res.send(JSON.stringify(edge, null, 2));
}