Summary:
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?
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.
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.