Skip to content

Commit a1acd19

Browse files
committed
typo
1 parent 6ec3af2 commit a1acd19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contracts/finance/VestingWalletConfidential.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ abstract contract VestingWalletConfidential is OwnableUpgradeable, ReentrancyGua
7878
FHE.allowTransient(amount, token);
7979
euint64 amountSent = IConfidentialFungibleToken(token).confidentialTransfer(owner(), amount);
8080

81-
// This could overflow if the total supply is resent `type(uint128).max/types(uint64).max` times. This is an accepted risk.
81+
// This could overflow if the total supply is resent `type(uint128).max/type(uint64).max` times. This is an accepted risk.
8282
euint128 newReleasedAmount = FHE.add(released(token), amountSent);
8383
FHE.allow(newReleasedAmount, owner());
8484
FHE.allowThis(newReleasedAmount);

0 commit comments

Comments
 (0)