-
Notifications
You must be signed in to change notification settings - Fork 60
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
consensus: Rolling Finality: implement vote-accumulation quorum #1187
Comments
Do you mean N Attested Blocks in a row or not? Let's assume that N=3 Example_1: Block 1 - Final Question: Would we consider any of the blocks after Block 1 a Final? @fed-franz |
N in a row. PS: please note this is the issue for the "improved" version |
Adding a couple of sidenotes for improving the current Rolling Finality:
|
Before being able to work on this, specs need to be finalized |
@fed-franz @goshawk-3 @herr-seppia is this still relevant? |
Probably not, but we should close it only when superseded by a new tracking issue explaining our direction on the topic |
I think we should keep it around, if not here, somewhere else, as a reminder of at least evaluate a more "meaningful" rolling finality design. |
Closing this in favor of a DIP (see dusk-network/dips#24) |
Summary
As described in #1118, the new consensus protocol will use a "naive" definition of rolling finality: after N Attested blocks, we finalize all previous non-finalized blocks.
This approach, while simple, could effectively ensure blocks finalized by the rolling finality won't be replaced with overwhelming probability. However, since this has not been yet demonstrated, and could turn to be wrong, we should evaluate in the future a different approach.
This is the original proposal for rolling finality: instead of counting blocks, we count the cumulative weight of Provisioner's votes for blocks added on top of a non-final block.
Detailed Description
As per the original definition in #1118:
If, at a specific block H (where FINALIZED < H < TIP), the sum1 of stakes reaches 67% of the total stake, block H is considered final.
(also see here)
Footnotes
https://github.com/dusk-network/rusk/issues/1118#user-content-fn-3-ce52005fafca99689b3d36def91895f8 ↩
The text was updated successfully, but these errors were encountered: