Usd0PP::mintWithPermit() no longer checks that the timestamp exceeds the bond start
Summary
Usd0PP::mint() checks that the timestamp is bigger than the bond start, but Usd0PP::mintWithPermit() doesn't, which is conflicting.
Vulnerability Detail
Most of the minting logic was moved to Usd0PP::_deconstruct(), but the timestamp and bond start check wasn't, and was kept only on the mint() function, having conflicting checks compared to Usd0PP::mintWithPermit().
Impact
No impact since at the moment the timestamp is bigger than the bond start and the check is useless, but a fresh deployment could make it problematic.
Code Snippet
Tool Used
Manual Review
Recommendation
Make the checks consistent across both functions.