Add a comment on Detailed ERC20 token #953 (#960)

* add a comment on detailed erc20 token #953
This commit is contained in:
Vittorio Minacori
2018-06-05 03:13:09 +02:00
committed by Matt Condon
parent 9d6ffae8cb
commit 512e8218ca
2 changed files with 10 additions and 1 deletions

View File

@ -3,6 +3,12 @@ pragma solidity ^0.4.23;
import "./ERC20.sol";
/**
* @title DetailedERC20 token
* @dev The decimals are only for visualization purposes.
* All the operations are done using the smallest and indivisible token unit,
* just as on Ethereum all the operations are done in wei.
*/
contract DetailedERC20 is ERC20 {
string public name;
string public symbol;