-
Notifications
You must be signed in to change notification settings - Fork 878
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor eth_getBlockReceipts to use getTxReceipts(blockHash) #5962
Comments
Hi, can I work on the issue? |
Hi, I'd like to take a look. |
@macfarla i have almost understood the issue, can you assign it to me. |
Hi folks - no assignee needed to work on this. Please open any PRs to complete this issue and tag us! In the spirit of open-source, we encourage all contributions. there are also plenty of other issues with the good first issues tag if you are eager. Reach out on discord.gg/hyperledger in the #besu-contributors channel if you have questions or want to submit a PR for review or feedback. |
Other good first issues: https://github.com/hyperledger/besu/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22 |
Hi @macfarla, I have analyzed the issue. BlockChainQueries.getTxReceipts(blockHash) returns List of |
Refactor eth_getBlockReceipts to use BlockChainQueries.getTxReceipts which already gets all the receipts by block hash.
Current impl loops through receipts in each tx for a block. Would be more efficient to use this method directly.
See #5771
The text was updated successfully, but these errors were encountered: