-
Notifications
You must be signed in to change notification settings - Fork 94
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
block under 1 second #214
Comments
Those RTTs will be too long to sign 1 second blocks consistently, as you will have the following for a block: Time to receive proposal from proposer via p2p network This means your total time to sign and share a vote with other validators is >300-800ms, since it does not include the negligible compute time along the way plus the RTT from your sentry(ies) to the other validators via p2p. Two votes are needed to sign a block (prevote and precommit), so this will barely be fast enough in the best case. We are able to reliably sign 1 second blocks with a RTT of ~30ms between cosigners and sentries, but we do see missed blocks here and there. This allows us to maintain an uptime of >=99.2% in the slashing period window. |
can horcrux in 3 signers 3 node with 100-200ms between the signers and similar with nodes sign blockchains with block time equal or less than 1 second , if yes how to achieve that and what could be the bottle necks that will prevent achieving this
Thanks
The text was updated successfully, but these errors were encountered: