Skip to content

Commit e68584a

Browse files
committed
nits
1 parent e477d5c commit e68584a

File tree

2 files changed

+3
-14
lines changed

2 files changed

+3
-14
lines changed

contracts/src/MintableERC20.sol

Lines changed: 0 additions & 12 deletions
This file was deleted.

contracts/src/contests/utils/MintableBurnableERC20.sol

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
// SPDX-License-Identifier: MIT
22
pragma solidity 0.8.25;
33

4-
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
5-
import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
4+
import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol";
5+
import { ERC20 } from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
66

77
contract MintableBurnableERC20 is ERC20, Ownable {
8+
89
constructor(string memory _name, string memory _symbol) Ownable() ERC20(_name, _symbol) {}
910

1011
function mint(address recipient, uint256 value) external onlyOwner {

0 commit comments

Comments
 (0)