forked from ethereum/go-ethereum
-
Notifications
You must be signed in to change notification settings - Fork 62
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
reduce chain database size #570
Comments
I will refer ethereum#19345 and handle it |
19 tasks
gzliudan
changed the title
reduce the receipt RLP size in chain database
reduce chain database size
Jan 23, 2025
19 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Now the receipt RLP format in our chain database is:
In fact the below fields are unnecessary in database:
because they can be derive from the transaction. Then format can be simplified to:
So we can encode the new receipt RLP with the new format. Then convert the old receipt RLP to the new format later.
The text was updated successfully, but these errors were encountered: