Skip to content
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

Clarify BFT validator requirements #241

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ You can [create a private network using IBFT](../../../tutorials/private-network

In IBFT networks, approved accounts known as validators validate transactions and blocks.
Validators take turns to create the next block.
Before inserting a block onto the chain, a super-majority (greater than 66%) of validators must first sign the block.
Before inserting a block onto the chain, a super-majority (greater than or equal to 2/3) of validators must first sign the block.

Existing validators propose and vote to [add or remove validators](#add-and-remove-validators).
Adding or removing a validator requires a majority vote (greater than 50%) of validators.

!!! important

Configure your network to ensure you never lose 1/3 or more of your validators.
Configure your network to ensure you never lose more than 1/3 of your validators.
If more than 1/3 of validators stop participating, new blocks are no longer created, and the network stalls.
It may take significant time to recover once nodes are restarted.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ You can [create a private network using QBFT](../../../tutorials/private-network

In QBFT networks, approved accounts known as validators validate transactions and blocks.
Validators take turns to create the next block.
Before inserting a block onto the chain, a super-majority (greater than 66%) of validators must first sign the block.
Before inserting a block onto the chain, a super-majority (greater than or equal to 2/3) of validators must first sign the block.

Existing validators propose and vote to [add or remove validators](#add-and-remove-validators).
Adding or removing a validator requires a majority vote (greater than 50%) of validators.

!!! important

Configure your network to ensure you never lose 1/3 or more of your validators.
Configure your network to ensure you never lose more than 1/3 of your validators.
If more than 1/3 of validators stop participating, new blocks are no longer created, and the network stalls.
It may take significant time to recover once nodes are restarted.

Expand Down