mirror of
https://github.com/mempool/mempool.git
synced 2024-11-19 18:03:00 +01:00
Fix getCpfpInfo error handling
This commit is contained in:
parent
e18f3800be
commit
329c635da5
@ -224,7 +224,12 @@ class BitcoinRoutes {
|
||||
} else {
|
||||
let cpfpInfo;
|
||||
if (config.DATABASE.ENABLED) {
|
||||
cpfpInfo = await transactionRepository.$getCpfpInfo(req.params.txId);
|
||||
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);
|
||||
|
Loading…
Reference in New Issue
Block a user