Open code423n4 opened 2 years ago
pauliax
The condition could be inclusive >= to avoid the useless computation:
if (debt > balance) return 0; return balance - debt;
Handle
pauliax
Vulnerability details
Impact
The condition could be inclusive >= to avoid the useless computation: