From 3b6992c264a0d519ac7dbcdf17574522bd5f6b06 Mon Sep 17 00:00:00 2001 From: p1r0 Date: Fri, 1 Mar 2019 14:59:47 -0600 Subject: [PATCH] comment? --- DCC_ERC20_0.4.18.sol | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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)]; }