Bytes, not bytes[], thanks @sz-piotr

This commit is contained in:
William Entriken 2018-02-28 12:18:48 -05:00 committed by GitHub
parent e847ffee78
commit 89d0162231
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ interface ERC721 /* is ERC165 */ {
/// @param _to The new owner
/// @param _tokenId The NFT to transfer
/// @param data Additional data with no specified format, sent in call to `_to`
function transferFrom(address _from, address _to, uint256 _tokenId, bytes[] data) external payable;
function transferFrom(address _from, address _to, uint256 _tokenId, bytes data) external payable;
/// @notice Transfers the ownership of an NFT from one address to another address
/// @dev This works identically to the other function with an extra data parameter,