Replies: 2 comments 1 reply
|
Thanks @ruXlab, this is an interesting suggestion. I'm moving this to discussions / Ideas and hopefully, someone can add this feature to Web3j at some point. Also please feel free to introduce this feature if you have time for it. |
1 reply
|
this feature was merged to master branch in #1932 |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Feature description_
Ethereum has very powerful tool - bloom filter, with it many potentially unnecessary operations can be avoided. For instance, when checking for specific logs in the block no need to pull all transactions of it. Instead the bloom filter match can be checked first on the client side and then if there is a match the complete block information can be retrieved.
It's just one of the use cases
web3js has these utility functions
All reactions