mirror of
https://github.com/logos-co/staking.git
synced 2025-02-02 13:53:35 +00:00
chore: fix warnings on BrokenERC20 mock
This commit is contained in:
parent
f946e55759
commit
f6a2b682c4
@ -9,12 +9,12 @@ contract BrokenERC20 is ERC20 {
|
||||
}
|
||||
|
||||
// solhint-disable-next-line no-unused-vars
|
||||
function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
|
||||
function transferFrom(address, address, uint256) public pure override returns (bool) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// solhint-disable-next-line no-unused-vars
|
||||
function transfer(address recipient, uint256 amount) public override returns (bool) {
|
||||
function transfer(address, uint256) public pure override returns (bool) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user