Fix whitespace in IERC721Receiver (#2359)

Slight nit on spacing to reduce # of lines // conform to other OZ function syntax
This commit is contained in:
Ross Campbell
2020-09-15 18:30:09 -04:00
committed by GitHub
parent 1229c28ce0
commit ca7ee098ca

View File

@ -17,6 +17,5 @@ interface IERC721Receiver {
* *
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/ */
function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4);
external returns (bytes4);
} }