Fix whitespace in IERC721Receiver (#2359)

Slight nit on spacing to reduce # of lines // conform to other OZ function syntax
pull/2349/head
Ross Campbell 4 years ago committed by GitHub
parent 1229c28ce0
commit ca7ee098ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      contracts/token/ERC721/IERC721Receiver.sol

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

Loading…
Cancel
Save