Create detailed ERC20 interface
This commit is contained in:
8
test/helpers/DetailedERC20Mock.sol
Normal file
8
test/helpers/DetailedERC20Mock.sol
Normal file
@ -0,0 +1,8 @@
|
||||
pragma solidity ^0.4.11;
|
||||
|
||||
import '../../contracts/token/StandardToken.sol';
|
||||
import '../../contracts/token/DetailedERC20.sol';
|
||||
|
||||
contract DetailedERC20Mock is StandardToken, DetailedERC20 {
|
||||
function DetailedERC20Mock(string _name, string _symbol, uint8 _decimals) DetailedERC20(_name, _symbol, _decimals) {}
|
||||
}
|
||||
Reference in New Issue
Block a user