Commit e7e8d8ea by Nicolás Venturo Committed by Francisco Giordano

Fixed Solium warnings. (#1301)

parent f28a1354
...@@ -26,12 +26,14 @@ contract ERC20Detailed is IERC20 { ...@@ -26,12 +26,14 @@ contract ERC20Detailed is IERC20 {
function name() public view returns(string) { function name() public view returns(string) {
return name_; return name_;
} }
/** /**
* @return the symbol of the token. * @return the symbol of the token.
*/ */
function symbol() public view returns(string) { function symbol() public view returns(string) {
return symbol_; return symbol_;
} }
/** /**
* @return the number of decimals of the token. * @return the number of decimals of the token.
*/ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment