Deleted unnecessary import. (#1437)

* Deleted unnecessary import.

* Added back SafeMath.

* Removed another unnecessary import.
pull/1451/head
Nicolás Venturo 6 years ago committed by GitHub
parent 28cf567e41
commit bbe804a14b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  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