* update solidity-coverage to ^0.5.0 * update truffle dependency to ^4.1.8 * update solium to ^1.1.7 * update all contracts to solidity ^0.4.23
10 lines
289 B
Solidity
10 lines
289 B
Solidity
pragma solidity ^0.4.23;
|
|
|
|
import "../token/ERC20/StandardToken.sol";
|
|
import "../token/ERC20/DetailedERC20.sol";
|
|
|
|
|
|
contract DetailedERC20Mock is StandardToken, DetailedERC20 {
|
|
constructor(string _name, string _symbol, uint8 _decimals) DetailedERC20(_name, _symbol, _decimals) public {}
|
|
}
|