Skip to content

Commit

Permalink
Update docs for SafeERC20.forceApprove (#4231)
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulRBerg authored Jul 1, 2023
1 parent 37270eb commit 06861dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/token/ERC20/utils/SafeERC20.sol
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ library SafeERC20 {

/**
* @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
* non-reverting calls are assumed to be successful. Compatible with tokens that require the approval to be set to
* 0 before setting it to a non-zero value.
* non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
* to be set to zero before setting it to a non-zero value, such as USDT.
*/
function forceApprove(IERC20 token, address spender, uint256 value) internal {
bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value));
Expand Down

0 comments on commit 06861dc

Please sign in to comment.