Skip to content

Commit

Permalink
style-fix: linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
juliaaschmidt committed Oct 31, 2024
1 parent e6bbc75 commit 104aac8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions contracts/test/mocks/MockERC20.sol
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ import "openzeppelin-contracts/contracts/token/ERC20/ERC20.sol";
contract MockERC20 is ERC20 {
bool transferFromFail;

constructor(string memory name, string memory symbol, uint8 decimals) ERC20(name, symbol) {
}
constructor(string memory name, string memory symbol, uint8 decimals) ERC20(name, symbol) {}

function setTransferFromFail(bool _fail) external {
transferFromFail = _fail;
Expand Down

0 comments on commit 104aac8

Please sign in to comment.