Deleted unnecessary import. (#1437)

* Deleted unnecessary import.

* Added back SafeMath.

* Removed another unnecessary import.

(cherry picked from commit bbe804a14b)
pull/1474/head
Nicolás Venturo 6 years ago committed by Leo Arias
parent 5cdf4de1f6
commit 984fe23a46
  1. 1
      contracts/crowdsale/distribution/PostDeliveryCrowdsale.sol
  2. 2
      contracts/token/ERC20/SafeERC20.sol

@ -1,7 +1,6 @@
pragma solidity ^0.4.24;
import "../validation/TimedCrowdsale.sol";
import "../../token/ERC20/IERC20.sol";
import "../../math/SafeMath.sol";
/**

@ -1,7 +1,7 @@
pragma solidity ^0.4.24;
import "./ERC20.sol";
import "./IERC20.sol";
import "../../math/SafeMath.sol";
/**
* @title SafeERC20

Loading…
Cancel
Save