In DecentralizedStableCoin::mint and burn
the checks that amount is not 0 actually checks if it less or equal to zero.
Since it can't less then zero because the amount is uint256
the proper way to check this is a simple !=
0 check
Change the check from _amount <= 0
to _amount != 0
The contest is live. Earn rewards by submitting a finding.
This is your time to appeal against judgements on your submissions.
Appeals are being carefully reviewed by our judges.