Merge branch 'master' of github.com:OpenZeppelin/zeppelin-solidity

This commit is contained in:
2017-07-02 15:50:40 -07:00
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';