We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currentlly, the burnFromAdmin function is implemented in the RandToken contract as:
function burnFromAdmin( address account, uint256 amount ) public whenNotPaused onlyRole(DEFAULT_ADMIN_ROLE) { _burn(account, amount); }
Question is what our goals with this? Do we wanna keep the option to burn any token from any user, or we would simply burn our own treasury tokens?
We need to decide what we want to do with this function since the current naming of the function and its capabilities might frighten some users.
The text was updated successfully, but these errors were encountered:
adradr
No branches or pull requests
Summary:
Currentlly, the burnFromAdmin function is implemented in the RandToken contract as:
Question is what our goals with this? Do we wanna keep the option to burn any token from any user, or we would simply burn our own treasury tokens?
Motivation:
We need to decide what we want to do with this function since the current naming of the function and its capabilities might frighten some users.
The text was updated successfully, but these errors were encountered: