diff --git a/DCC_ERC20_0.4.18.sol b/DCC_ERC20_0.4.18.sol index a0a2cfc..641b437 100644 --- a/DCC_ERC20_0.4.18.sol +++ b/DCC_ERC20_0.4.18.sol @@ -126,8 +126,9 @@ contract SC1Token is ERC20Interface, Owned, SafeMath { // ------------------------------------------------------------------------ - // Total supply - // ------------------------------------------------------------------------ + // Total supply: Get the total token supply + // ------------------------------------------------------------------------ + function totalSupply() public constant returns (uint) { return _totalSupply - balances[address(0)]; }