Automatically merged updates to draft EIP(s) 721

Hi, I'm a bot! This change was automatically merged because:

 - It only modifies existing Draft or Last Call EIP(s)
 - The PR was approved or written by at least one author of each modified EIP
 - The build is passing
This commit is contained in:
Maciej Górski 2018-06-18 21:38:24 +02:00 committed by EIP Automerge Bot
parent ac657ad49b
commit cd57cb477f

View File

@ -165,12 +165,12 @@ interface ERC721TokenReceiver {
/// transfer. Return of other than the magic value MUST result in the
/// transaction being reverted.
/// Note: the contract address is always the message sender.
/// @param _from The sending address
/// @param _from The address which previously owned the token.
/// @param _tokenId The NFT identifier which is being transfered
/// @param data Additional data with no specified format
/// @return `bytes4(keccak256("onERC721Received(address,uint256,bytes)"))`
/// unless throwing
function onERC721Received(address _from, uint256 _tokenId, bytes data) external returns(bytes4);
function onERC721Received(address _from, uint256 _tokenId, bytes data) external returns(bytes4);
}
```