* Remove ERC721.burn(owner, tokenId) * Remove ERC721._checkOnERC721Received from the contract's API * Fix linter error * Remove Escrow and PullPayment withdrawWithGas, replace for withdraw * Add changelog entry * Add reentrancy notice
26 lines
608 B
Solidity
26 lines
608 B
Solidity
pragma solidity ^0.6.0;
|
|
|
|
import "../token/ERC721/ERC721.sol";
|
|
|
|
/**
|
|
* @title ERC721Mock
|
|
* This mock just provides a public safeMint, mint, and burn functions for testing purposes
|
|
*/
|
|
contract ERC721Mock is ERC721 {
|
|
function safeMint(address to, uint256 tokenId) public {
|
|
_safeMint(to, tokenId);
|
|
}
|
|
|
|
function safeMint(address to, uint256 tokenId, bytes memory _data) public {
|
|
_safeMint(to, tokenId, _data);
|
|
}
|
|
|
|
function mint(address to, uint256 tokenId) public {
|
|
_mint(to, tokenId);
|
|
}
|
|
|
|
function burn(uint256 tokenId) public {
|
|
_burn(tokenId);
|
|
}
|
|
}
|