Added @TODO for safeTransferFrom support in ERC721 proxy

This commit is contained in:
Greg Hysen
2018-04-17 13:19:12 -07:00
committed by Amir Bandeali
parent e4dd33a675
commit dbd65cdb04

View File

@@ -51,6 +51,8 @@ contract ERC721Proxy is
(token, tokenId) = decodeMetadata(assetMetadata);
// Either succeeds or throws.
// @TODO: Call safeTransferFrom if there is additional
// data stored in `assetMetadata`.
ERC721Token(token).transferFrom(from, to, tokenId);
}