You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are three gaps in our blocks and transactions table identified with:
WITH all_numbers AS (
SELECT generate_series(MIN(18562218), MAX(19316649)) AS num
FROM blocks
),
missing_blocks as (SELECTan.numFROM all_numbers an
LEFT JOIN blocks yt ONan.num=yt.numberWHEREyt.number IS NULL)
-- select count(*) from transactions where block_number in (select num from missing_blocks);-- select * from erc721_transfer where block_number in (select num from missing_blocks);
The results are in three isolated chunks:
(200 blocks) from 18562220 to 18562419
(200 blocks) from 18562520 to 18562719
(50 blocks) from 18844270 to 18844319
The logs for this are too old to recover.
I propose clear the DB from 18562220 and let it repopulate. This would give us the opportunity to see whats went wrong and shouldn't take too long to recover from (i.e. November 13 2023)
The text was updated successfully, but these errors were encountered:
There are three gaps in our blocks and transactions table identified with:
The results are in three isolated chunks:
The logs for this are too old to recover.
I propose clear the DB from 18562220 and let it repopulate. This would give us the opportunity to see whats went wrong and shouldn't take too long to recover from (i.e. November 13 2023)
The text was updated successfully, but these errors were encountered: