Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor/reviewing contract code and comments #234

Merged
merged 12 commits into from Aug 26, 2019

Removing no longer needed manual mint function.

  • Loading branch information
Freydal committed Aug 22, 2019
commit f1bb439d1148dcc7b26ef71aeb1dd14e069d7c0b
@@ -85,13 +85,6 @@ contract KosuToken is ERC20, Authorizable {
_burn(msg.sender, amount);
}

/** @dev Mint tokens
@notice Mint tokens
@param amount Number of tokens to create
*/
function mint(uint amount) public isAuthorized {
_mint(msg.sender, amount);
}
/** @dev Authorized addresses (mostly contract systems) may manually mint new tokens to desired addresses.
@notice Authorized addresses (mostly contract systems) may manually mint new tokens to desired addresses.
@param _address Address to mint tokens to.
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.