diff --git a/contracts/drafts/Counters.sol b/contracts/drafts/Counters.sol index 56c91319b..15ecb775f 100644 --- a/contracts/drafts/Counters.sol +++ b/contracts/drafts/Counters.sol @@ -28,6 +28,7 @@ library Counters { } function increment(Counter storage counter) internal { + // The {SafeMath} overflow check can be skipped here, see the comment at the top counter._value += 1; }