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
Currently transactions that are stored inside a block are handled sequentially. Instead, order to improve the overall data parsing performances, we could handle them in parallel.
Implementation proposal
Use goroutines to concurrently call HandleTx multiple times.
The text was updated successfully, but these errors were encountered:
## Description
Fixes#64
## Checklist
- [x] Targeted PR against correct branch.
- [x] Linked to Github issue with discussion and accepted design OR link to spec that describes this work.
- [ ] Wrote unit tests.
- [x] Re-reviewed `Files changed` in the Github PR explorer.
## Description
Fixes#64
## Checklist
- [x] Targeted PR against correct branch.
- [x] Linked to Github issue with discussion and accepted design OR link to spec that describes this work.
- [ ] Wrote unit tests.
- [x] Re-reviewed `Files changed` in the Github PR explorer.
Feature description
Currently transactions that are stored inside a block are handled sequentially. Instead, order to improve the overall data parsing performances, we could handle them in parallel.
Implementation proposal
Use goroutines to concurrently call
HandleTx
multiple times.The text was updated successfully, but these errors were encountered: