Adding missing return after expressjs response.

This commit is contained in:
softsimon 2021-03-18 23:53:39 +07:00
parent d3c53c7406
commit 6f1cdd0c8b
No known key found for this signature in database
GPG Key ID: 488D7DCFB5A430D7

View File

@ -111,6 +111,7 @@ class Routes {
ancestors: tx.ancestors,
bestDescendant: tx.bestDescendant || null,
});
return;
}
const cpfpInfo = Common.setRelativesAndGetCpfpInfo(tx, mempool.getMempool());