Skip to content

Commit bcf8329

Browse files
authored
Merge pull request #12 from SpringRole/added-comment
fixed comment
2 parents a130942 + e7aaf95 commit bcf8329

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

PreMint.sol

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -176,12 +176,9 @@ contract SRTToken is Ownable,StandardToken,WhiteListedContracts {
176176
return true;
177177
}
178178

179-
/**
180-
* @dev Function to mint tokens
181-
* @param _to The address that will receive the minted tokens.
182-
* @param _amount The amount of tokens to mint.
183-
* @return A boolean that indicates if the operation was successful.
184-
*/
179+
/*
180+
mint function will allow to mint tokens and assign to owner
181+
*/
185182
function mint(uint256 _amount) onlyOwner public returns (bool) {
186183
require(maxSupply>(totalSupply.add(_amount)));
187184
totalSupply = totalSupply.add(_amount);

0 commit comments

Comments
 (0)