DetailedERC20Mock.sol 315 B

12345678910111213141516
  1. pragma solidity ^0.4.24;
  2. import "../token/ERC20/StandardToken.sol";
  3. import "../token/ERC20/DetailedERC20.sol";
  4. contract DetailedERC20Mock is StandardToken, DetailedERC20 {
  5. constructor(
  6. string _name,
  7. string _symbol,
  8. uint8 _decimals
  9. )
  10. DetailedERC20(_name, _symbol, _decimals)
  11. public
  12. {}
  13. }