Files
openzeppelin-contracts/contracts/mocks/token/ERC20ReturnFalseMock.sol
2023-05-29 21:37:37 +02:00

20 lines
482 B
Solidity

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
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;
}
}