Fixed Solium warnings. (#1301)

This commit is contained in:
Nicolás Venturo
2018-09-07 10:00:37 -03:00
committed by Francisco Giordano
parent f28a135429
commit e7e8d8eac1

View File

@ -26,12 +26,14 @@ contract ERC20Detailed is IERC20 {
function name() public view returns(string) {
return name_;
}
/**
* @return the symbol of the token.
*/
function symbol() public view returns(string) {
return symbol_;
}
/**
* @return the number of decimals of the token.
*/