Fix getCpfpInfo error handling

This commit is contained in:
Mononaut 2023-06-21 19:53:35 -04:00
parent c9445dcfe0
commit dba296f117

View File

@ -224,7 +224,12 @@ class BitcoinRoutes {
} else {
let cpfpInfo;
if (config.DATABASE.ENABLED) {
try {
cpfpInfo = await transactionRepository.$getCpfpInfo(req.params.txId);
} catch (e) {
res.status(500).send('failed to get CPFP info');
return;
}
}
if (cpfpInfo) {
res.json(cpfpInfo);