This repository has been archived by the owner on Mar 24, 2023. It is now read-only.
v1.8.5
Fixed
- Fix log index by @classicalliu in #554
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 in Web3 containner to fix database
cd /godwoken-web3
yarn knex migrate:latest
Full Changelog: v1.8.4...v1.8.5