You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Check value different from 0 ?
function mint(address account, uint256 value) public onlyRole(MINTER_ROLE) {
_mint(account, value);
emit Mint(account, value);
}