This commit is contained in:
ernestognw
2023-07-12 21:09:18 -06:00
parent 9ba012005f
commit 10815081f7

View File

@ -27,7 +27,11 @@ abstract contract ERC721Pausable is ERC721, Pausable {
*
* - the contract must not be paused.
*/
function _update(address to, uint256 tokenId, address operatorCheck) internal virtual override whenNotPaused returns (address) {
function _update(
address to,
uint256 tokenId,
address operatorCheck
) internal virtual override whenNotPaused returns (address) {
return super._update(to, tokenId, operatorCheck);
}
}