From 87f1091c0cb2df961fbd8085cc56de8a039b2af6 Mon Sep 17 00:00:00 2001 From: John Forrest Date: Tue, 27 Mar 2018 10:48:17 -0500 Subject: [PATCH] Moving operator language to function instead of event --- EIPS/eip-721.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/EIPS/eip-721.md b/EIPS/eip-721.md index 50e530cc..33579a82 100644 --- a/EIPS/eip-721.md +++ b/EIPS/eip-721.md @@ -60,8 +60,7 @@ interface ERC721 /* is ERC165 */ { event Approval(address indexed _owner, address indexed _approved, uint256 _tokenId); /// @dev This emits when an operator is enabled or disabled for an owner. - /// The operator can manage all NFTs of the owner. The contract MUST allow - /// multiple operators per owner. + /// The operator can manage all NFTs of the owner. event ApprovalForAll(address indexed _owner, address indexed _operator, bool _approved); /// @notice Count all NFTs assigned to an owner @@ -122,7 +121,8 @@ interface ERC721 /* is ERC165 */ { /// @notice Enable or disable approval for a third party ("operator") to manage /// all of `msg.sender`'s assets. - /// @dev Emits the ApprovalForAll event + /// @dev Emits the ApprovalForAll event. The contract MUST allow + /// multiple operators per owner. /// @param _operator Address to add to the set of authorized operators. /// @param _approved True if the operator is approved, false to revoke approval function setApprovalForAll(address _operator, bool _approved) external;