You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
486 B
14 lines
486 B
2 years ago
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
pragma solidity ^0.8.0;
|
||
|
|
||
|
import "../../token/ERC20/ERC20.sol";
|
||
|
|
||
|
// contract that replicate USDT (0xdac17f958d2ee523a2206206994597c13d831ec7) approval beavior
|
||
|
abstract contract ERC20ForceApproveMock is ERC20 {
|
||
|
function approve(address spender, uint256 amount) public virtual override returns (bool) {
|
||
|
require(amount == 0 || allowance(msg.sender, spender) == 0, "USDT approval failure");
|
||
|
return super.approve(spender, amount);
|
||
|
}
|
||
|
}
|