Files
uniswap-v2/contracts/test/GenericERC20.sol
Noah Zinsmeister 43dfc8c567 add exchanges data structure
fix tests
2019-11-19 18:17:11 -05:00

13 lines
284 B
Solidity

pragma solidity 0.5.12;
import "../token/ERC20.sol";
contract GenericERC20 is ERC20 {
constructor(
string memory _name,
string memory _symbol,
uint8 _decimals,
uint256 _totalSupply
) ERC20(_name, _symbol, _decimals, _totalSupply) public {}
}