Unverified Commit ca7ee098 by Ross Campbell Committed by GitHub

Fix whitespace in IERC721Receiver (#2359)

Slight nit on spacing to reduce # of lines // conform to other OZ function syntax
parent 1229c28c
...@@ -17,6 +17,5 @@ interface IERC721Receiver { ...@@ -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);
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment