dev
This commit is contained in:
@@ -8,8 +8,9 @@
|
||||
pragma solidity 0.6.9;
|
||||
|
||||
import {SafeMath} from "../../lib/SafeMath.sol";
|
||||
import {InitializableOwnable} from "../../lib/InitializableOwnable.sol";
|
||||
|
||||
contract InitializableInternalMintableERC20 {
|
||||
contract InitializableInternalMintableERC20 is InitializableOwnable {
|
||||
using SafeMath for uint256;
|
||||
|
||||
string public name;
|
||||
@@ -32,6 +33,7 @@ contract InitializableInternalMintableERC20 {
|
||||
string memory _symbol,
|
||||
uint8 _decimals
|
||||
) public {
|
||||
initOwner(_creator);
|
||||
name = _name;
|
||||
symbol = _symbol;
|
||||
decimals = _decimals;
|
||||
|
||||
Reference in New Issue
Block a user