Skip to content

RandToken burnFromAdmin #64

@adradr

Description

@adradr

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.

Metadata

Metadata

Assignees

Labels

questionFurther information is requested

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions