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 Feb 1, 2024. It is now read-only.
This is a significant and relatively easy performance enhancement.
Currently, any node publishing a block does the following (roughly):
a) process transactions that will be in the block
b) create the block, publish it
c) process transactions to verify the block
d) update chain head
For step (c), we can use a cached result of (a). This will cut down the validator CPU usage significantly and should nearly double the transactions-per-second of the validator.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
This is a significant and relatively easy performance enhancement.
Currently, any node publishing a block does the following (roughly):
a) process transactions that will be in the block
b) create the block, publish it
c) process transactions to verify the block
d) update chain head
For step (c), we can use a cached result of (a). This will cut down the validator CPU usage significantly and should nearly double the transactions-per-second of the validator.
The text was updated successfully, but these errors were encountered: