We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f620b56 commit 2c6e246Copy full SHA for 2c6e246
src/Escrow.sol
@@ -313,7 +313,6 @@ contract Escrow is Owned, IEscrow {
313
require(distribution.amount > 0, Errors.INVALID_AMOUNT);
314
require(whitelistedTokens.contains(address(distribution.token)), Errors.INVALID_TOKEN);
315
316
- // Validate that after fees, recipient will receive at least 1 wei
317
uint feeAmount = distribution.amount.mulDivUp(feeOnClaim, 10_000);
318
require(distribution.amount > feeAmount, Errors.INVALID_AMOUNT);
319
0 commit comments