Address feedback comments for ERC721
This commit is contained in:
@ -9,11 +9,11 @@ import "../token/ERC721Token.sol";
|
||||
contract ERC721TokenMock is ERC721Token {
|
||||
function ERC721TokenMock() ERC721Token() public { }
|
||||
|
||||
function publicMint(address _to, uint256 _tokenId) public {
|
||||
super.mint(_to, _tokenId);
|
||||
function mint(address _to, uint256 _tokenId) public {
|
||||
super._mint(_to, _tokenId);
|
||||
}
|
||||
|
||||
function publicBurn(uint256 _tokenId) public {
|
||||
super.burn(_tokenId);
|
||||
function burn(uint256 _tokenId) public {
|
||||
super._burn(_tokenId);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user