This repository has been archived by the owner on Mar 24, 2023. It is now read-only.
v1.7.4
Fixed
- Fix log index by @classicalliu in #553
Note
Database migration is required to fix the log index data in this version.
Check how many db records need to be fixed via SQL
select count(*) from logs where (block_number, transaction_index) not in (select block_number, min(transaction_index) min_tx_index from logs group by block_number);
(please aware that after record fixed, this SQL will still show the same number, it is expected)
Run migration to fix database
yarn knex migrate:latest
Full Changelog: v1.7.3...v1.7.4