File tree Expand file tree Collapse file tree
src/lean_spec/subspecs/containers/state Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -74,8 +74,8 @@ configuration.
7474
7575## Chain Justification
7676
77- Blocks become justified when enough validators attestation for them. Justification
78- happens when 2/3 of validators agree.
77+ Blocks become justified when enough validators attest for them. Justification
78+ happens when at least 2/3 of validators agree.
7979
8080Not every slot can be justified. Certain slots are special based on how far
8181they are from the last finalized slot. Recent slots are always valid. For
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ consistent views.
5252Validators need to know where they can safely submit an attestation. The safe target mechanism
5353finds the latest block that has enough support.
5454
55- A block needs attestations from 2/3 of validators to be safe. This threshold ensures
55+ A block needs attestations from at least 2/3 of validators to be safe. This threshold ensures
5656that conflicting blocks can't both be safe simultaneously.
5757
5858## Computing Attestation Targets
Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ checkpoint.
9191
9292### Why Attest
9393
94- Attestations drive justification and finalization. When 2/3 of validators attestation for the
94+ Attestations drive justification and finalization. When at least 2/3 of validators attest for the
9595same target, it becomes justified. Justification eventually leads to
9696finalization.
9797
Original file line number Diff line number Diff line change @@ -602,7 +602,7 @@ def process_attestations(
602602
603603 # Check whether the vote count crosses the supermajority threshold.
604604 #
605- # A block becomes justified when more than two-thirds of validators
605+ # A block becomes justified when at least two-thirds of validators
606606 # have voted for it.
607607 #
608608 # We compare integers to avoid floating-point division:
You can’t perform that action at this time.
0 commit comments