Added description for the DummyERC721Token constructor

This commit is contained in:
Greg Hysen
2018-04-17 22:51:08 -07:00
committed by Amir Bandeali
parent ab13ce96cc
commit 95dbc0f5bc

View File

@@ -24,6 +24,12 @@ contract DummyERC721Token is
Ownable,
ERC721Token
{
/**
* @dev Constructor passes its arguments to the base ERC721Token constructor
* @param name of token
* @param symbol of token
*/
function DummyERC721Token(
string name,
string symbol)