This commit is contained in:
p1r0 2019-03-01 14:59:47 -06:00
parent d331fedb12
commit 3b6992c264
1 changed files with 3 additions and 2 deletions

View File

@ -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)];
}