Quellcode durchsuchen

Update ERC20.sol (#2357)

Remove unused `Address` library import, references.
Ross Campbell vor 5 Jahren
Ursprung
Commit
1229c28ce0
1 geänderte Dateien mit 0 neuen und 2 gelöschten Zeilen
  1. 0 2
      contracts/token/ERC20/ERC20.sol

+ 0 - 2
contracts/token/ERC20/ERC20.sol

@@ -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;