Skip to content

Commit 2c6e246

Browse files
committed
rm comment
1 parent f620b56 commit 2c6e246

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/Escrow.sol

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,6 @@ contract Escrow is Owned, IEscrow {
313313
require(distribution.amount > 0, Errors.INVALID_AMOUNT);
314314
require(whitelistedTokens.contains(address(distribution.token)), Errors.INVALID_TOKEN);
315315

316-
// Validate that after fees, recipient will receive at least 1 wei
317316
uint feeAmount = distribution.amount.mulDivUp(feeOnClaim, 10_000);
318317
require(distribution.amount > feeAmount, Errors.INVALID_AMOUNT);
319318

0 commit comments

Comments
 (0)