Move ERC721 files to custom folder (#700)

This commit is contained in:
Facundo Spagnuolo
2018-01-23 17:03:05 -03:00
committed by Francisco Giordano
parent e16c4042c1
commit 1eea95f9ac
4 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
pragma solidity ^0.4.18;
import "../token/ERC721Token.sol";
import "../token/ERC721/ERC721Token.sol";
/**
* @title ERC721TokenMock

View File

@ -1,7 +1,7 @@
pragma solidity ^0.4.18;
import "./ERC721.sol";
import "../math/SafeMath.sol";
import "../../math/SafeMath.sol";
/**
* @title ERC721Token

View File

@ -1,4 +1,4 @@
import assertRevert from '../helpers/assertRevert';
import assertRevert from '../../helpers/assertRevert';
const BigNumber = web3.BigNumber;
const ERC721Token = artifacts.require('ERC721TokenMock.sol');