Skip to content

Commit c1bad1d

Browse files
committed
docs: comment
1 parent 95f2803 commit c1bad1d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

contracts/src/arbitration/KlerosCoreBase.sol

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -774,8 +774,9 @@ abstract contract KlerosCoreBase is IArbitratorV2, Initializable, UUPSProxiable
774774
_params.feePerJurorInRound,
775775
_params.pnkAtStakePerJurorInRound
776776
);
777+
778+
// Guard against degree exceeding 1, though it should be ensured by the dispute kit.
777779
if (degreeOfCoherence > ONE_BASIS_POINT) {
778-
// Make sure the degree doesn't exceed 1, though it should be ensured by the dispute kit.
779780
degreeOfCoherence = ONE_BASIS_POINT;
780781
}
781782

@@ -833,7 +834,7 @@ abstract contract KlerosCoreBase is IArbitratorV2, Initializable, UUPSProxiable
833834
_params.pnkAtStakePerJurorInRound
834835
);
835836

836-
// Make sure the degree doesn't exceed 1, though it should be ensured by the dispute kit.
837+
// Guard against degree exceeding 1, though it should be ensured by the dispute kit.
837838
if (degreeOfCoherence > ONE_BASIS_POINT) {
838839
degreeOfCoherence = ONE_BASIS_POINT;
839840
}

0 commit comments

Comments
 (0)