Fix typo in retrieval of onERC721Received selector (#3151)

pull/3156/head
Harsh Vakharia 3 years ago committed by GitHub
parent f55d2716a8
commit a81b07ce91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      contracts/token/ERC721/IERC721Receiver.sol

@ -16,7 +16,7 @@ interface IERC721Receiver {
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
* The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
*/
function onERC721Received(
address operator,

Loading…
Cancel
Save