Fix graph legend update while load bug and remove unnecessary query

This commit is contained in:
natsoni
2024-05-27 16:49:29 +02:00
parent cca798eeaa
commit 0654872627
2 changed files with 4 additions and 2 deletions

View File

@@ -227,10 +227,8 @@ class MiningRoutes {
throw new Error('from must be less than to');
}
const blockFees = await mining.$getBlockFeesTimespan(parseInt(req.query.from as string, 10), parseInt(req.query.to as string, 10));
const blockCount = await BlocksRepository.$blockCount(null, null);
res.header('Pragma', 'public');
res.header('Cache-control', 'public');
res.header('X-total-count', blockCount.toString());
res.setHeader('Expires', new Date(Date.now() + 1000 * 60).toUTCString());
res.json(blockFees);
} catch (e) {