Files
openzeppelin-contracts/contracts/token/ERC721/ERC721Holder.sol
Francisco Giordano 9b37104655 Turn off blank-lines Solium rule (#1284)
* turn off blank-lines rule

* remove triple newlines
2018-09-19 19:59:13 -03:00

18 lines
268 B
Solidity

pragma solidity ^0.4.24;
import "./IERC721Receiver.sol";
contract ERC721Holder is IERC721Receiver {
function onERC721Received(
address,
address,
uint256,
bytes
)
public
returns(bytes4)
{
return this.onERC721Received.selector;
}
}