Browse Source

Fixed Solium warnings. (#1301)

Nicolás Venturo 7 years ago
parent
commit
e7e8d8eac1
1 changed files with 2 additions and 0 deletions
  1. 2 0
      contracts/token/ERC20/ERC20Detailed.sol

+ 2 - 0
contracts/token/ERC20/ERC20Detailed.sol

@@ -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.
    */