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.
22 lines
541 B
22 lines
541 B
pragma solidity ^0.4.24;
|
|
|
|
import "../token/ERC721/ERC721Pausable.sol";
|
|
|
|
|
|
/**
|
|
* @title ERC721PausableMock
|
|
* This mock just provides a public mint, burn and exists functions for testing purposes
|
|
*/
|
|
contract ERC721PausableMock is ERC721Pausable {
|
|
function mint(address _to, uint256 _tokenId) public {
|
|
super._mint(_to, _tokenId);
|
|
}
|
|
|
|
function burn(uint256 _tokenId) public {
|
|
super._burn(ownerOf(_tokenId), _tokenId);
|
|
}
|
|
|
|
function exists(uint256 _tokenId) public view returns (bool) {
|
|
return super._exists(_tokenId);
|
|
}
|
|
}
|
|
|