Files
openzeppelin-contracts/contracts/mocks/token/ERC20ReturnFalseMock.sol
2023-02-24 20:29:49 +00:00

20 lines
481 B
Solidity

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../../token/ERC20/ERC20.sol";
abstract contract ERC20ReturnFalseMock is ERC20 {
function transfer(address, uint256) public pure override returns (bool) {
return false;
}
function transferFrom(address, address, uint256) public pure override returns (bool) {
return false;
}
function approve(address, uint256) public pure override returns (bool) {
return false;
}
}