fix references to SafeMath in crowdsale contracts

This commit is contained in:
Francisco Giordano
2017-07-02 18:39:51 -03:00
parent d5a75362ec
commit f507a0ea29
5 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
pragma solidity ^0.4.11;
import '../SafeMath.sol';
import '../math/SafeMath.sol';
import './Crowdsale.sol';
/**

View File

@ -1,7 +1,7 @@
pragma solidity ^0.4.11;
import '../token/MintableToken.sol';
import '../SafeMath.sol';
import '../math/SafeMath.sol';
/**
* @title Crowdsale

View File

@ -1,6 +1,6 @@
pragma solidity ^0.4.11;
import '../SafeMath.sol';
import '../math/SafeMath.sol';
import '../ownership/Ownable.sol';
import './Crowdsale.sol';

View File

@ -1,6 +1,6 @@
pragma solidity ^0.4.11;
import '../SafeMath.sol';
import '../math/SafeMath.sol';
import '../ownership/Ownable.sol';
/**

View File

@ -1,7 +1,7 @@
pragma solidity ^0.4.11;
import '../SafeMath.sol';
import '../math/SafeMath.sol';
import './FinalizableCrowdsale.sol';
import './RefundVault.sol';