From 4cf57f5dba49da61635420615728238863345659 Mon Sep 17 00:00:00 2001 From: Fang Date: Fri, 16 Mar 2018 21:53:36 +0100 Subject: [PATCH] Remove throw condition for setApprovalForAll. And tweak the description to more clearly indicate its difference from the other, per-NFT operations. --- EIPS/eip-721.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/EIPS/eip-721.md b/EIPS/eip-721.md index fd2d8abf..7f0bbc43 100644 --- a/EIPS/eip-721.md +++ b/EIPS/eip-721.md @@ -122,8 +122,7 @@ interface ERC721 /* is ERC165 */ { function approve(address _approved, uint256 _tokenId) external payable; /// @notice Enable or disable approval for a third party ("operator") to manage - /// all your assets. - /// @dev Throws unless `msg.sender` is the current NFT owner. + /// all of `msg.sender`'s assets. /// @dev Emits the ApprovalForAll event /// @param _operator Address to add to the set of authorized operators. /// @param _approved True if the operators is approved, false to revoke approval