From 89d01622315f34340339e6a098c70a17fa856893 Mon Sep 17 00:00:00 2001 From: William Entriken Date: Wed, 28 Feb 2018 12:18:48 -0500 Subject: [PATCH] Bytes, not bytes[], thanks @sz-piotr --- EIPS/eip-721.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EIPS/eip-721.md b/EIPS/eip-721.md index 3ad491bc..dccf8ba4 100644 --- a/EIPS/eip-721.md +++ b/EIPS/eip-721.md @@ -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,