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
{{ message }}
This repository has been archived by the owner on Apr 4, 2024. It is now read-only.
GetLogs performance is quite bad at the moment. It will try to find logs matching the criterias by looping through all the blocks and transactions
It won't work well when the chain grow significantly.
We should use the bloom filter to avoid checking block which are tested negative.
Current behavior: [What currently happens]
Loop through all blocks/transactions/logs
Desired behavior: [What you would like to happen]
Check only blocks which bloom filter returns positive
The text was updated successfully, but these errors were encountered:
Proposal:
GetLogs performance is quite bad at the moment. It will try to find logs matching the criterias by looping through all the blocks and transactions
It won't work well when the chain grow significantly.
We should use the bloom filter to avoid checking block which are tested negative.
Current behavior: [What currently happens]
Loop through all blocks/transactions/logs
Desired behavior: [What you would like to happen]
Check only blocks which bloom filter returns positive
The text was updated successfully, but these errors were encountered: