DetailedERC20Mock.sol 289 B

123456789
  1. pragma solidity ^0.4.23;
  2. import "../token/ERC20/StandardToken.sol";
  3. import "../token/ERC20/DetailedERC20.sol";
  4. contract DetailedERC20Mock is StandardToken, DetailedERC20 {
  5. constructor(string _name, string _symbol, uint8 _decimals) DetailedERC20(_name, _symbol, _decimals) public {}
  6. }