Browse Source

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

8 years ago
parent
commit
f2c2c01f8e

+ 1 - 1
contracts/crowdsale/CappedCrowdsale.sol

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

+ 1 - 1
contracts/crowdsale/Crowdsale.sol

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

+ 1 - 1
contracts/crowdsale/FinalizableCrowdsale.sol

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

+ 1 - 1
contracts/crowdsale/RefundVault.sol

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

+ 1 - 1
contracts/crowdsale/RefundableCrowdsale.sol

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