update cached lastBlock

This commit is contained in:
poma 2021-03-03 16:18:41 +03:00
parent 9e9cca31ac
commit f8678ab44e
No known key found for this signature in database
GPG Key ID: BA20CB01FE165657
1 changed files with 2 additions and 1 deletions

View File

@ -31,7 +31,7 @@ async function getTornadoTreesEvents(type, fromBlock, toBlock) {
async function getEventsWithCache(type) {
const currentBlock = await getProvider().getBlockNumber()
const lastBlock = Number(await redis.get(`${type}LastBlock`) || 0) + 1
let lastBlock = Number(await redis.get(`${type}LastBlock`) || 0) + 1
// if (currentBlock <= lastBlock) {
// throw new Error('Current block is lower than last block')
// }
@ -39,6 +39,7 @@ async function getEventsWithCache(type) {
if (cachedEvents.length === 0) {
cachedEvents = require(`../cache/${type}.json`)
if (cachedEvents.length > 0) {
lastBlock = cachedEvents.slice(-1)[0].block + 1
await redis.rpush(type, cachedEvents.map((e) => JSON.stringify(e)))
}
}