-
Notifications
You must be signed in to change notification settings - Fork 978
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
Unbond/Deactivate inactive validators #1360
Comments
We should be able to copy the Cosmos SDK model:
Let me know if you have any questions /cc @grarco @brentstone |
Some initial notes to spec out how to do this specifically in Namada. Please comment.
Not positive if jailing or deactivating is the proper thing to do, or if it even matters. Also please comment on whether we think it is better to call |
Validators should be jailed but without being slashed and they can unjail themselves. |
The threshold for liveness should be something like missed more than 10% of the last 10,000 blocks. That means that the sliding windows is ~12 hours with 5 second blocks, which means that you can be down for about 1.5 hours. |
|
bitfield is good. we can port the code over from the sdk. |
Cool, this sounds good. Chatted with @grarco about what we will do too. |
Is this really completed already? 😮 |
Implement liveness protection.
In particular, the current idea would be to jail a consensus validator who has not voted on enough blocks within some past interval.
Started implementation here: #981
The text was updated successfully, but these errors were encountered: