Validations & refunds are handled in GetContributeValue() function itself. So in the function; ``` public static bool MintTokens() ``` ``` ulong contribute_value = GetContributeValue(time, sender); if(contribute_value == 0) { return false; } ```
Validations & refunds are handled in GetContributeValue() function itself.
So in the function;