Explorar el Código

fix references to SafeMath in crowdsale contracts

Francisco Giordano hace 8 años
padre
commit
f507a0ea29

+ 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';