Fix typos

(cherry picked from commit b4a9c47e9b)
This commit is contained in:
Francisco Giordano
2023-10-02 17:43:51 -03:00
parent a14d8149ed
commit 51191d3152
3 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ pragma solidity ^0.8.20;
import {ERC20} from "../../token/ERC20/ERC20.sol";
// contract that replicate USDT (0xdac17f958d2ee523a2206206994597c13d831ec7) approval beavior
// contract that replicate USDT (0xdac17f958d2ee523a2206206994597c13d831ec7) approval behavior
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");