Update ERC20.sol (#2357)

Remove unused `Address` library import, references.
This commit is contained in:
Ross Campbell
2020-09-14 12:35:46 -04:00
committed by GitHub
parent 09d437c1f9
commit 1229c28ce0

View File

@ -5,7 +5,6 @@ pragma solidity ^0.6.0;
import "../../GSN/Context.sol";
import "./IERC20.sol";
import "../../math/SafeMath.sol";
import "../../utils/Address.sol";
/**
* @dev Implementation of the {IERC20} interface.
@ -33,7 +32,6 @@ import "../../utils/Address.sol";
*/
contract ERC20 is Context, IERC20 {
using SafeMath for uint256;
using Address for address;
mapping (address => uint256) private _balances;