Skip to content

Commit

Permalink
Remove deprecated implementation
Browse files Browse the repository at this point in the history
We only want to keep the interface, for interacting with already deployed contracts
  • Loading branch information
spalladino committed Mar 9, 2018
1 parent 6f180a6 commit 6fbe771
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 35 deletions.
5 changes: 5 additions & 0 deletions contracts/token/ERC721/DeprecatedERC721.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ pragma solidity ^0.4.18;

import "./ERC721.sol";

/**
* @title ERC-721 methods shipped in OpenZeppelin v1.7.0, removed in the latest version of the standard
* @dev Only use this interface for compatibility with previously deployed contracts
* @dev Use ERC721 for interacting with new contracts which are standard-compliant
*/
contract DeprecatedERC721 is ERC721 {
function takeOwnership(uint256 _tokenId) public;
function transfer(address _to, uint256 _tokenId) public;
Expand Down
35 changes: 0 additions & 35 deletions contracts/token/ERC721/DeprecatedERC721Token.sol

This file was deleted.

0 comments on commit 6fbe771

Please sign in to comment.