Skip to content

Commit 0c0fc25

Browse files
committed
Fixed bug with totalSupply needing to be removed from interface because it's being redefined as a variable in the inherited contract
1 parent 8f7ae67 commit 0c0fc25

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

smart_token/PIXTokenCrowdsale_audited.sol

+1-4
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,7 @@ contract SafeMath {
3939
*
4040
* https://github.com/ethereum/EIPs/issues/20
4141
*/
42-
contract Token {
43-
44-
/// @return total amount of tokens
45-
function totalSupply() constant returns (uint256 supply);
42+
interface Token {
4643

4744
/// @param _owner The address from which the balance will be retrieved
4845
/// @return The balance
-12 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)