Skip to content

Commit

Permalink
Merge branch 'master' into eip665
Browse files Browse the repository at this point in the history
  • Loading branch information
gcolvin authored Mar 28, 2018
2 parents f98cdae + 5a68d6b commit 09f9c0c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions EIPS/eip-721.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,10 @@ 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 operators is approved, false to revoke approval
/// @param _approved True if the operator is approved, false to revoke approval
function setApprovalForAll(address _operator, bool _approved) external;
/// @notice Get the approved address for a single NFT
Expand Down

0 comments on commit 09f9c0c

Please sign in to comment.