You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
415 B
19 lines
415 B
7 years ago
|
pragma solidity ^0.4.24;
|
||
7 years ago
|
|
||
7 years ago
|
import "../token/ERC721/ERC721Basic.sol";
|
||
7 years ago
|
|
||
7 years ago
|
|
||
7 years ago
|
/**
|
||
7 years ago
|
* @title ERC721BasicMock
|
||
7 years ago
|
* This mock just provides a public mint and burn functions for testing purposes
|
||
|
*/
|
||
7 years ago
|
contract ERC721BasicMock is ERC721Basic {
|
||
7 years ago
|
function mint(address _to, uint256 _tokenId) public {
|
||
|
super._mint(_to, _tokenId);
|
||
|
}
|
||
|
|
||
|
function burn(uint256 _tokenId) public {
|
||
|
super._burn(ownerOf(_tokenId), _tokenId);
|
||
|
}
|
||
|
}
|