Removed default value assignments. (#1432)

This commit is contained in:
Nicolás Venturo
2018-10-17 17:00:12 -03:00
committed by GitHub
parent d8ab8a00f2
commit cfef58361f
3 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@ contract ERC20TokenMetadata is IERC20 {
}
contract ERC20WithMetadata is ERC20TokenMetadata {
string private _tokenURI = "";
string private _tokenURI;
constructor(string tokenURI)
public