tmp remove name from detailed erc20

This commit is contained in:
Andrea Franz 2020-09-30 12:17:32 +02:00
parent 573b63adc9
commit d2ea7607eb
No known key found for this signature in database
GPG Key ID: 4F0D2F2D9DE7F29D
1 changed files with 0 additions and 1 deletions

View File

@ -3,7 +3,6 @@ pragma solidity ^0.5.16;
import "./IERC20.sol";
contract IERC20Detailed is IERC20 {
function name() public view returns (string memory);
function symbol() public view returns (string memory);
function decimals() public view returns (uint8);
}