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 Jun 9, 2024. It is now read-only.
Currently, headers, transactions, and receipts are marshaled/unmarshaled using RLP encoding/decoding, which is quite slow and not specifically useful. Convert to something faster like JSON.
The text was updated successfully, but these errors were encountered:
fastrlp isn't always faster than rlp in my benchmarks.
I have tried to use the same approach as polygon-edge. While there is a possibility that it may not be the most optimal code, I haven't been able to find the source for the quoted benchmark.
I see that Ethereum is moving to SSZ, and it seems faster than RLP for a simpler header struct (linked above).
The go implementation does not work with geth structs out of the box yet, so I'm currently working on that on a fork (specifically this ticket) to move further.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Currently, headers, transactions, and receipts are marshaled/unmarshaled using RLP encoding/decoding, which is quite slow and not specifically useful. Convert to something faster like JSON.
The text was updated successfully, but these errors were encountered: