From 6f1cdd0c8b735750fd8fc50ffd82c2c55d95cd30 Mon Sep 17 00:00:00 2001 From: softsimon Date: Thu, 18 Mar 2021 23:53:39 +0700 Subject: [PATCH] Adding missing return after expressjs response. --- backend/src/routes.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/src/routes.ts b/backend/src/routes.ts index 0677663b3..399c3b8ab 100644 --- a/backend/src/routes.ts +++ b/backend/src/routes.ts @@ -111,6 +111,7 @@ class Routes { ancestors: tx.ancestors, bestDescendant: tx.bestDescendant || null, }); + return; } const cpfpInfo = Common.setRelativesAndGetCpfpInfo(tx, mempool.getMempool());