Skip to content
This repository has been archived by the owner on Mar 24, 2023. It is now read-only.

v1.8.5

Compare
Choose a tag to compare
@RetricSu RetricSu released this 18 Oct 05:55
· 5 commits to 1.8-rc since this release
409298c

Fixed

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