* fixed visibility warnings * solved visibility and line length warning * change a test assertion that fails due to chai dependence update * linter, constructor style and solved visibility warnings * Changed Windows line endings to Unix.
13 lines
271 B
Solidity
13 lines
271 B
Solidity
pragma solidity ^0.4.21;
|
|
|
|
import "../token/ERC20/StandardToken.sol";
|
|
import "../proposals/ERC1046/TokenMetadata.sol";
|
|
|
|
|
|
contract ERC20WithMetadataMock is StandardToken, ERC20WithMetadata {
|
|
constructor(string _tokenURI) public
|
|
ERC20WithMetadata(_tokenURI)
|
|
{
|
|
}
|
|
}
|