Closed crypto-vincent closed 10 months ago
Replacing this kind of logic:
if a < b { return 0; } return checked_sub(a, b);
by:
return a.saturating_sub(b);
When possible
CI is broken due to mercurial's breaking change on devnet. Tested manually on localnet once again before merging to develop 👌 .
Replacing this kind of logic:
by:
When possible