diff options
author | Amir Bandeali <abandeali1@gmail.com> | 2017-12-13 08:07:04 +0800 |
---|---|---|
committer | Amir Bandeali <abandeali1@gmail.com> | 2017-12-13 08:07:04 +0800 |
commit | 1fbe6389505a8c2bfcf98725325f2c79cb6b2b5a (patch) | |
tree | 059443c77b5109e3eae0f541c39861c4d76ec1fb | |
parent | 5678196706a63d27fc5b00b5224c8213510e76f0 (diff) | |
download | dexon-sol-tools-1fbe6389505a8c2bfcf98725325f2c79cb6b2b5a.tar dexon-sol-tools-1fbe6389505a8c2bfcf98725325f2c79cb6b2b5a.tar.gz dexon-sol-tools-1fbe6389505a8c2bfcf98725325f2c79cb6b2b5a.tar.bz2 dexon-sol-tools-1fbe6389505a8c2bfcf98725325f2c79cb6b2b5a.tar.lz dexon-sol-tools-1fbe6389505a8c2bfcf98725325f2c79cb6b2b5a.tar.xz dexon-sol-tools-1fbe6389505a8c2bfcf98725325f2c79cb6b2b5a.tar.zst dexon-sol-tools-1fbe6389505a8c2bfcf98725325f2c79cb6b2b5a.zip |
Remove redundant totalSupply from token interface
-rw-r--r-- | packages/contracts/contracts/tokens/Token_v2.sol | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/packages/contracts/contracts/tokens/Token_v2.sol b/packages/contracts/contracts/tokens/Token_v2.sol index 027f706f4..e1088c560 100644 --- a/packages/contracts/contracts/tokens/Token_v2.sol +++ b/packages/contracts/contracts/tokens/Token_v2.sol @@ -2,9 +2,6 @@ pragma solidity 0.4.18; contract Token_v2 { - /// @return total amount of tokens - function totalSupply() public view returns (uint) {} - /// @notice send `_value` token to `_to` from `msg.sender` /// @param _to The address of the recipient /// @param _value The amount of token to be transferred |